mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-12-05 18:27:26 +00:00
20 lines
396 B
C
20 lines
396 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;
|
|
};
|
|
|
|
extern struct CheatList Cheats;
|
|
|
|
#endif // _CHEATS_H
|