2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 23:07:43 +00:00

PATH stubs

This commit is contained in:
2016-08-10 09:05:14 -07:00
parent 4519e3abf2
commit 9c9002cee3
21 changed files with 309 additions and 57 deletions

View File

@@ -0,0 +1,24 @@
#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;
}
}