Add initial pathfinding class files

This commit is contained in:
Phillip Stephens 2024-12-16 19:53:25 -08:00
parent c854a74ae4
commit 29b6f94976
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1 @@
#include "MetroidPrime/PathFinding/CPathFindArea.hpp"

View File

@ -0,0 +1,21 @@
#include "MetroidPrime/PathFinding/CPathFindRegion.hpp"
#include "MetroidPrime/PathFinding/CPathFindArea.hpp"
CPFRegionData::CPFRegionData()
: x0_bestPointDistSq(0.f)
, x4_bestPoint(CVector3f::Zero())
, x10_cookie(-1)
, x14_cost(0.f)
, x18_g(0.f)
, x1c_h(0.f)
, x20_parent(nullptr)
, x24_openLess(nullptr)
, x28_openMore(nullptr)
, x2c_parentLink(0) {
};
void CPFRegion::Fixup(CPFArea& area, int& numNodes) {
}

View File

@ -0,0 +1 @@
#include "MetroidPrime/PathFinding/CPathFindSearch.hpp"