source: Daodan/src/Daodan_Cheater.h@ 674

Last change on this file since 674 was 471, checked in by gumby, 15 years ago

int32_t cheat_oldhealth = 1;
int32_t cheat_oldmaxhealth = 1;
Added "tellmetheversion", needs a version number.

File size: 1.0 KB
RevLine 
[339]1#pragma once
2#ifndef DAODAN_CHEATER_H
3#define DAODAN_CHEATER_H
4
[452]5#include <stdint.h>
6
[339]7typedef struct {
8 const char* name;
9 const char* message_on;
10 const char* message_off;
11 int func;
12} oniCheatCode;
13
[388]14enum { cheat_shapeshifter,
15 cheat_liveforever,
16 cheat_touchofdeath,
17 cheat_canttouchthis,
18 cheat_fatloot,
19 cheat_glassworld,
20 cheat_winlevel,
21 cheat_loselevel,
22 cheat_bighead,
23 cheat_minime,
24 cheat_superammo,
25 cheat_thedayismine,
26 cheat_reservoirdogs,
27 cheat_roughjustice,
28 cheat_chenille,
29 cheat_behemoth,
30 cheat_elderrune,
31 cheat_moonshadow,
32 cheat_munitionfrenzy,
33 cheat_fistsoflegend,
34 cheat_killmequick,
35 cheat_carousel,
36 cheat_bigbadboss,
37 cheat_bulletproof,
38 cheat_kangaroo,
39 cheat_marypoppins,
[453]40 cheat_buddha,
41 cheat_shinobi,
[452]42 cheat_x,
[453]43 cheat_testcheat,
[471]44 cheat_tellmetheversion,
[388]45};
[349]46
[339]47extern oniCheatCode DDr_CheatTable[];
48
[452]49uint8_t ONICALL DDrCheater(uint32_t cheat);
[455]50void __stdcall FallingFrames(void* Ebp);
51void ONICALL DDrCheater_LevelLoad();
[452]52
[339]53#endif
Note: See TracBrowser for help on using the repository browser.