mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 00:15:06 +00:00
865ef56a09
To reduce dependency between navigator interface and implementation.
17 lines
324 B
C++
17 lines
324 B
C++
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_RECASTMESHTILE_H
|
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_RECASTMESHTILE_H
|
|
|
|
#include "tileposition.hpp"
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
class RecastMesh;
|
|
|
|
using RecastMeshTiles = std::map<TilePosition, std::shared_ptr<RecastMesh>>;
|
|
}
|
|
|
|
#endif
|