Almost match CScriptMailbox

Former-commit-id: 99f27bda6e
This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-03 16:21:47 +02:00
parent 43e6f98e65
commit 3d299fc132
6 changed files with 131 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
#ifndef _CWORLDSAVEGAMEINFO
#define _CWORLDSAVEGAMEINFO
#include "MetroidPrime/TGameTypes.hpp"
#include "rstl/vector.hpp"
class CWorldSaveGameInfo {
public:
enum EScanCategory { kSC_None, kSC_Data, kSC_Lore, kSC_Creature, kSC_Research, kSC_Artifact };
int GetRelayIndex(const TEditorId&) const;
const rstl::vector<TEditorId>& GetRelays() const { return x14_relays; }
private:
uint x0_areaCount;
rstl::vector<TEditorId> x4_cinematics;
rstl::vector<TEditorId> x14_relays;
};
#endif // _CWORLDSAVEGAMEINFO