mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
953a4c5550
Load content files based on the engine config files. Generate navmesh per cell for all cells and store into SQLite database.
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
|