the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 36 lines 855 B view raw
1#pragma once 2 3enum eDebugSetting 4{ 5 eDebugSetting_LoadSavesFromDisk, 6 eDebugSetting_WriteSavesToDisk, 7 eDebugSetting_InterfaceOff, 8 eDebugSetting_Safearea, 9 eDebugSetting_MobsDontAttack, 10 eDebugSetting_FreezeTime, 11 eDebugSetting_DisableWeather, 12 eDebugSetting_CraftAnything, 13 eDebugSetting_UseDpadForDebug, 14 eDebugSetting_MobsDontTick, 15 eDebugSetting_InstantDestroy, 16 eDebugSetting_HandRenderingOff, 17 eDebugSetting_RemoveAllPlayerData, 18 eDebugSetting_DebugLeaderboards, 19 eDebugSetting_TipsAlwaysOn, 20 //eDebugSetting_LightDarkBackground, 21 eDebugSetting_RegularLightning, 22 eDebugSetting_Max, 23}; 24 25enum eDebugButton 26{ 27 eDebugButton_Theme=0, 28 eDebugButton_Avatar_Item_1, 29 eDebugButton_Avatar_Item_2, 30 eDebugButton_Avatar_Item_3, 31 eDebugButton_Gamerpic_1, 32 eDebugButton_Gamerpic_2, 33 eDebugButton_CheckTips, 34 eDebugButton_WipeLeaderboards, 35 eDebugButton_Max, 36};