mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-08 19:04:54 +00:00
14 lines
303 B
C++
14 lines
303 B
C++
#ifndef _CMAPWORLDINFO
|
|
#define _CMAPWORLDINFO
|
|
|
|
#include "MetroidPrime/TGameTypes.hpp"
|
|
|
|
class CMapWorldInfo {
|
|
public:
|
|
bool IsAreaVisible(const TAreaId areaId) const;
|
|
bool IsDoorVisited(const TEditorId eid) const;
|
|
void SetDoorVisited(TEditorId eid, const bool visited);
|
|
};
|
|
|
|
#endif // _CMAPWORLDINFO
|