mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-13 18:59:06 +00:00
13 lines
233 B
C++
13 lines
233 B
C++
#ifndef _CMAPWORLDINFO
|
|
#define _CMAPWORLDINFO
|
|
|
|
#include "MetroidPrime/TGameTypes.hpp"
|
|
|
|
class CMapWorldInfo {
|
|
public:
|
|
bool IsAreaVisible(TAreaId areaId) const;
|
|
bool IsDoorVisited(TEditorId eid) const;
|
|
};
|
|
|
|
#endif // _CMAPWORLDINFO
|