mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-04 02:31:10 -06:00
24 lines
473 B
C++
24 lines
473 B
C++
#pragma once
|
|
|
|
namespace SWA
|
|
{
|
|
class CGameDocument // : public Hedgehog::Base::CSynchronizedObject
|
|
{
|
|
public:
|
|
class CMember
|
|
{
|
|
public:
|
|
SWA_INSERT_PADDING(0x20C);
|
|
be<uint32_t> m_Score;
|
|
};
|
|
|
|
// TODO: Hedgehog::Base::TSynchronizedPtr<CGameDocument>
|
|
static CGameDocument* GetInstance();
|
|
|
|
SWA_INSERT_PADDING(0x08);
|
|
xpointer<CMember> m_pMember;
|
|
};
|
|
}
|
|
|
|
#include "GameDocument.inl"
|