diff options
Diffstat (limited to '')
-rwxr-xr-x | include/game.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/game.h b/include/game.h index 9e9d860..c0477b7 100755 --- a/include/game.h +++ b/include/game.h @@ -4147,5 +4147,17 @@ extern void *_8042A788; extern "C" void sub_8019C390(void *, int);
extern "C" bool SpawnEffect(const char*, int, Vec*, S16Vec*, Vec*);
+class StageC4 {
+ public:
+ static StageC4 *instance;
+
+ virtual ~StageC4();
+
+ // Not gonna bother with listing methods here
+ int stageNum, selection, playerNum;
+ u32 _10, _14;
+ u8 flags, _19, _1A, willDisplay, _1C, _1D;
+};
+
#endif
|