2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 12:31:22 +00:00
metaforce/Runtime/World/CPathFindRegion.cpp
2016-08-10 09:05:14 -07:00

25 lines
356 B
C++

#include "CPathFindRegion.hpp"
namespace urde
{
void CPFRegionData::SetOpenLess(CPFRegion* region)
{
x24_openLess = region;
}
void CPFRegionData::SetOpenMore(CPFRegion* region)
{
x28_openMore = region;
}
CPFRegion* CPFRegionData::GetOpenLess()
{
return x24_openLess;
}
CPFRegion* CPFRegionData::GetOpenMore()
{
return x28_openMore;
}
}