mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-12 12:19:06 +00:00
13 lines
245 B
C++
13 lines
245 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;
|
|
};
|
|
|
|
#endif // _CMAPWORLDINFO
|