Render96ex/src/pc/cheats.h

14 lines
248 B
C
Raw Normal View History

2020-05-17 20:06:38 -04:00
#include <stdbool.h>
struct CheatList
{
bool EnableCheats;
bool MoonJump;
bool GodMode;
bool InfiniteLives;
bool SuperSpeed;
bool Responsive;
};
extern struct CheatList Cheats;