the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 18 lines 441 B view raw
1#pragma once 2using namespace std; 3 4class ClientConstants 5{ 6 7 // This file holds global constants used by the client. 8 // The file should be replaced at compile-time with the 9 // proper settings for the given compilation. For example, 10 // release builds should replace this file with no-cheat 11 // settings. 12 13 // INTERNAL DEVELOPMENT SETTINGS 14public: 15 static const wstring VERSION_STRING; 16 17 static const bool DEADMAU5_CAMERA_CHEATS = false; 18};