Move pathfinding related code to ai.cpp.

Add a gsc.hpp header to allow creating methods and functions for GSC outside of the gsc component. Add experimental path generating code to ai.cpp.
This commit is contained in:
JezuzLizard
2023-03-29 20:15:05 -07:00
parent 4135e7653a
commit 6461aa85d3
7 changed files with 452 additions and 111 deletions

View File

@ -1590,6 +1590,14 @@ namespace game
pathlocal_t_circle circle;
};
struct CustomSearchInfo_FindPath
{
pathnode_t* m_pNodeTo;
float startPos[3];
float negotiationOverlapCost;
};
enum VariableType
{
VAR_UNDEFINED = 0x0,