sm64coopdx/src/pc/cheats.h
2020-05-18 23:00:42 -03:00

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