sm64pc/src/pc/cheats.h

25 lines
506 B
C

#ifndef _CHEATS_H
#define _CHEATS_H
#include <stdbool.h>
struct CheatList {
bool EnableCheats;
bool MoonJump;
bool GodMode;
bool InfiniteLives;
bool SuperSpeed;
bool Responsive;
bool ExitAnywhere;
bool HugeMario;
bool TinyMario;
bool Unknown1;
bool Unknown2;
bool Unknown3;
bool DisableBLJ;
};
extern struct CheatList Cheats;
#endif // _CHEATS_H