mirror of https://github.com/AxioDL/metaforce.git
26 lines
572 B
C++
26 lines
572 B
C++
#ifndef __URDE_CMAPWORLDINFO_HPP__
|
|
#define __URDE_CMAPWORLDINFO_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CMapWorldInfo
|
|
{
|
|
std::vector<u32> x4_visitedAreas;
|
|
std::map<TEditorId, bool> x14_;
|
|
public:
|
|
CMapWorldInfo()=default;
|
|
CMapWorldInfo(CInputStream&);
|
|
void PutTo(COutputStream&);
|
|
bool IsMapped() const;
|
|
void SetIsMapped(bool) const;
|
|
void SetDoorVisited(TEditorId eid, bool val);
|
|
bool IsDoorVisited() const;
|
|
bool IsAreaVisted(TAreaId);
|
|
void SetAreaVisited(TAreaId, bool);
|
|
};
|
|
}
|
|
|
|
#endif // __URDE_CMAPWORLDINFO_HPP__
|