[server] Implement CGameMode ctor/dtor

* Add CGameMode::Unload stub
This commit is contained in:
RD42
2024-01-09 23:46:04 +08:00
parent 3f64ae001b
commit 6437517d1f
2 changed files with 28 additions and 1 deletions

View File

@ -5,7 +5,16 @@
class CGameMode // size: WL 110
{
private:
char _gap0[110];
char gap0[104];
char field_68;
char field_69;
char gap6A[4];
public:
CGameMode();
~CGameMode();
void Unload();
};
#endif