metaforce/Runtime/World/CPathFindRegion.cpp

18 lines
420 B
C++
Raw Normal View History

2016-08-10 16:05:14 +00:00
#include "CPathFindRegion.hpp"
2017-07-30 11:00:30 +00:00
#include "CPathFindArea.hpp"
2016-08-10 16:05:14 +00:00
namespace urde
{
2017-07-30 11:00:30 +00:00
void CPFRegion::Fixup(CPFArea& area, s32& r5)
{
}
void CPFRegionData::SetOpenLess(CPFRegion* region) { x24_openLess = region; }
2016-08-10 16:05:14 +00:00
void CPFRegionData::SetOpenMore(CPFRegion* region) { x28_openMore = region; }
2016-08-10 16:05:14 +00:00
CPFRegion* CPFRegionData::GetOpenLess() { return x24_openLess; }
2016-08-10 16:05:14 +00:00
CPFRegion* CPFRegionData::GetOpenMore() { return x28_openMore; }
2016-08-10 16:05:14 +00:00
}