2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 01:07:43 +00:00

Work on CStateManager::InitializeState flow

This commit is contained in:
Jack Andersen
2016-08-13 17:00:58 -10:00
parent abcb9c2424
commit 2a425b5a73
20 changed files with 403 additions and 80 deletions

View File

@@ -7,6 +7,7 @@ namespace urde
{
class CMapWorldInfo
{
std::vector<u32> x4_visitedAreas;
std::map<TEditorId, bool> x14_;
public:
CMapWorldInfo()=default;
@@ -16,8 +17,8 @@ public:
void SetIsMapped(bool) const;
void SetDoorVisited(TEditorId eid, bool val);
bool IsDoorVisited() const;
bool IsAreaVisted(TAreaId) const;
void SetAreaVisited(TAreaId, bool) const;
bool IsAreaVisted(TAreaId);
void SetAreaVisited(TAreaId, bool);
};
}