sm64pc/src/pc/cheats.h

21 lines
396 B
C
Raw Permalink Normal View History

#ifndef _CHEATS_H
#define _CHEATS_H
2020-05-18 02:06:38 +02:00
#include <stdbool.h>
struct CheatList {
2020-05-18 02:06:38 +02:00
bool EnableCheats;
bool MoonJump;
2020-05-18 02:06:38 +02:00
bool GodMode;
bool InfiniteLives;
bool SuperSpeed;
bool Responsive;
bool ExitAnywhere;
bool HugeMario;
bool TinyMario;
2020-05-18 02:06:38 +02:00
};
extern struct CheatList Cheats;
#endif // _CHEATS_H