mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 22:31:21 +00:00
17 lines
274 B
C++
17 lines
274 B
C++
#ifndef __URDE_CMAPWORLDINFO_HPP__
|
|
#define __URDE_CMAPWORLDINFO_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CMapWorldInfo
|
|
{
|
|
std::map<TEditorId, bool> x14_;
|
|
public:
|
|
void SetDoorVisited(TEditorId eid, bool val);
|
|
};
|
|
}
|
|
|
|
#endif // __URDE_CMAPWORLDINFO_HPP__
|