mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 19:29:56 +00:00
17 lines
410 B
C++
17 lines
410 B
C++
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_NAVMESHDBUTILS_H
|
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_NAVMESHDBUTILS_H
|
|
|
|
#include "navmeshdb.hpp"
|
|
|
|
#include <optional>
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
struct MeshSource;
|
|
|
|
ShapeId resolveMeshSource(NavMeshDb& db, const MeshSource& source, ShapeId& nextShapeId);
|
|
|
|
std::optional<ShapeId> resolveMeshSource(NavMeshDb& db, const MeshSource& source);
|
|
}
|
|
|
|
#endif
|