mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
23 lines
466 B
C++
23 lines
466 B
C++
#ifndef OPENMW_NAVMESHTOOL_NAVMESH_H
|
|
#define OPENMW_NAVMESHTOOL_NAVMESH_H
|
|
|
|
#include <osg/Vec3f>
|
|
|
|
#include <cstddef>
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
class NavMeshDb;
|
|
struct Settings;
|
|
}
|
|
|
|
namespace NavMeshTool
|
|
{
|
|
struct WorldspaceData;
|
|
|
|
void generateAllNavMeshTiles(const osg::Vec3f& agentHalfExtents, const DetourNavigator::Settings& settings,
|
|
const std::size_t threadsNumber, WorldspaceData& cellsData, DetourNavigator::NavMeshDb&& db);
|
|
}
|
|
|
|
#endif
|