2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-25 14:33:29 +00:00
metaforce/Runtime/World/CPathFindSearch.cpp
2018-02-14 18:37:21 -10:00

20 lines
341 B
C++

#include "CPathFindSearch.hpp"
namespace urde
{
CPathFindSearch::CPathFindSearch(CPFArea* area, u32 flags, u32 w2, float f1, float f2)
: x0_area(area), xd0_f2(f2), xd4_f1(f1), xdc_flags(flags), xe0_w2(1u << w2)
{
}
void CPathFindSearch::Search(const zeus::CVector3f& p1, const zeus::CVector3f& p2)
{
x4_.clear();
xc8_ = 0;
}
}