mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 22:56:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 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
 |