blob: 0b3c3a530bcd4a7f0d210e3d85feeff11e58a796 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "server/ai_navmesh.h"
dtNavMesh* GetNavMeshForHull(int nHull);
class CAI_Helper
{
public:
void DrawNavmeshPolys(dtNavMesh* pNavMesh = nullptr);
};
inline CAI_Helper* g_pAIHelper = nullptr;
|