mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-19 06:22:17 +00:00
* Fix DLC info message always being displayed * Use uint32_t for version numbers * Make AchievementManager follow the same naming convention as PersistentStorageManager * persistent_data: remove header size field * Make status success by default or on file not existing
25 lines
544 B
C++
25 lines
544 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
|
|
namespace SWA
|
|
{
|
|
class CGameParameter // : public Hedgehog::Universe::CMessageActor
|
|
{
|
|
public:
|
|
struct SSaveData
|
|
{
|
|
SWA_INSERT_PADDING(0x8600);
|
|
be<uint32_t> DLCFlags[8];
|
|
SWA_INSERT_PADDING(0x15C);
|
|
};
|
|
|
|
struct SStageParameter;
|
|
|
|
SWA_INSERT_PADDING(0x94);
|
|
xpointer<SSaveData> m_pSaveData;
|
|
xpointer<SStageParameter> m_pStageParameter;
|
|
};
|
|
|
|
SWA_ASSERT_OFFSETOF(CGameParameter::SSaveData, DLCFlags, 0x8600);
|
|
}
|