mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 04:31:22 +00:00
12 lines
146 B
C++
12 lines
146 B
C++
#include "CWorld.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
bool CWorld::DoesAreaExist(TAreaId area) const
|
|
{
|
|
return (area >= 0 && area < x18_areas.size());
|
|
}
|
|
|
|
}
|