2016-08-10 16:05:14 +00:00
|
|
|
#include "CPathFindRegion.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
2016-12-19 18:27:58 +00:00
|
|
|
void CPFRegionData::SetOpenLess(CPFRegion* region) { x24_openLess = region; }
|
2016-08-10 16:05:14 +00:00
|
|
|
|
2016-12-19 18:27:58 +00:00
|
|
|
void CPFRegionData::SetOpenMore(CPFRegion* region) { x28_openMore = region; }
|
2016-08-10 16:05:14 +00:00
|
|
|
|
2016-12-19 18:27:58 +00:00
|
|
|
CPFRegion* CPFRegionData::GetOpenLess() { return x24_openLess; }
|
2016-08-10 16:05:14 +00:00
|
|
|
|
2016-12-19 18:27:58 +00:00
|
|
|
CPFRegion* CPFRegionData::GetOpenMore() { return x28_openMore; }
|
2016-08-10 16:05:14 +00:00
|
|
|
}
|