2020-05-18 18:59:29 -04:00
|
|
|
#ifndef _CHEATS_H
|
|
|
|
#define _CHEATS_H
|
|
|
|
|
2020-05-17 20:06:38 -04:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2020-05-18 18:59:29 -04:00
|
|
|
struct CheatList {
|
2020-05-17 20:06:38 -04:00
|
|
|
bool EnableCheats;
|
2020-05-18 18:59:29 -04:00
|
|
|
bool MoonJump;
|
2020-05-17 20:06:38 -04:00
|
|
|
bool GodMode;
|
|
|
|
bool InfiniteLives;
|
|
|
|
bool SuperSpeed;
|
|
|
|
bool Responsive;
|
2020-05-18 12:51:53 -04:00
|
|
|
bool ExitAnywhere;
|
|
|
|
bool HugeMario;
|
|
|
|
bool TinyMario;
|
2020-05-17 20:06:38 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct CheatList Cheats;
|
2020-05-18 18:59:29 -04:00
|
|
|
|
|
|
|
#endif // _CHEATS_H
|