mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 00:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 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
 |