mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 23:07:43 +00:00
PATH stubs
This commit is contained in:
24
Runtime/World/CPathFindRegion.cpp
Normal file
24
Runtime/World/CPathFindRegion.cpp
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user