mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
16 lines
327 B
C++
16 lines
327 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_RECASTMESHTILE_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_RECASTMESHTILE_H
|
||
|
|
||
|
#include "tileposition.hpp"
|
||
|
#include "recastmesh.hpp"
|
||
|
|
||
|
#include <map>
|
||
|
#include <memory>
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
using RecastMeshTiles = std::map<TilePosition, std::shared_ptr<RecastMesh>>;
|
||
|
}
|
||
|
|
||
|
#endif
|