mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-17 05:51:19 +00:00
16 lines
221 B
C++
16 lines
221 B
C++
#ifndef _CWORLDSTATE
|
|
#define _CWORLDSTATE
|
|
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
|
|
class CWorldState {
|
|
public:
|
|
~CWorldState();
|
|
void SetDesiredAreaAssetId(CAssetId id);
|
|
|
|
private:
|
|
uchar pad[0x18];
|
|
};
|
|
|
|
#endif // _CWORLDSTATE
|