mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-14 09:26:07 +00:00
22
include/MetroidPrime/Player/CWorldSaveGameInfo.hpp
Normal file
22
include/MetroidPrime/Player/CWorldSaveGameInfo.hpp
Normal 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
|
||||
Reference in New Issue
Block a user