mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-12-04 23:22:30 +00:00
13 lines
248 B
C
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;
|