14 lines
248 B
C
14 lines
248 B
C
![]() |
#include <stdbool.h>
|
||
|
|
||
|
struct CheatList
|
||
|
{
|
||
|
bool EnableCheats;
|
||
|
bool MoonJump;
|
||
|
bool GodMode;
|
||
|
bool InfiniteLives;
|
||
|
bool SuperSpeed;
|
||
|
bool Responsive;
|
||
|
};
|
||
|
|
||
|
extern struct CheatList Cheats;
|