diff options
Diffstat (limited to 'cheat.h')
-rw-r--r-- | cheat.h | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ +#ifndef __CHEAT_H_ +#define __CHEAT_H_ + +#include <stdlib.h> + +struct cheat { + const char *name; + const char *info; + int enabled; + const char *code; +}; + +struct cheats { + int enabled; + size_t count; + struct cheat *cheats; +}; + +struct cheats *cheats_load(const char *filename); +void cheats_free(struct cheats *cheats); + +#endif |