sm64coopdx/src/pc/cheats.h
2020-05-17 21:06:38 -03:00

13 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;