Add data type import for Ghidra

This commit is contained in:
KeybadeBlox 2026-02-04 19:52:12 -05:00
parent 30f8a5879e
commit 63002e0f08
9 changed files with 233 additions and 31 deletions

View file

@ -215,7 +215,7 @@ enum GlobalIndex {
};
#pragma pack(4)
extern struct Game {
struct Game {
char unknown0x4[4];
unsigned unknown0x8;
unsigned * unknown0xC;
@ -350,7 +350,8 @@ extern struct Game {
void draw();
void frame();
int mainLoop();
} * g_game;
};
extern Game * g_game;
// Root of the exec GameObj tree
struct RootExecObj : GameObj {