mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
14 lines
301 B
C++
14 lines
301 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_NAVMESHDBUTILS_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_NAVMESHDBUTILS_H
|
||
|
|
||
|
#include "navmeshdb.hpp"
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct MeshSource;
|
||
|
|
||
|
ShapeId resolveMeshSource(NavMeshDb& db, const MeshSource& source, ShapeId& nextShapeId);
|
||
|
}
|
||
|
|
||
|
#endif
|