mirror of https://github.com/AxioDL/metaforce.git
18 lines
420 B
C++
18 lines
420 B
C++
#include "CPathFindRegion.hpp"
|
|
#include "CPathFindArea.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
void CPFRegion::Fixup(CPFArea& area, s32& r5)
|
|
{
|
|
}
|
|
|
|
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; }
|
|
}
|