mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 04:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_COMPONENTS_PATHGRIDUTIL_H
 | 
						|
#define OPENMW_COMPONENTS_PATHGRIDUTIL_H
 | 
						|
 | 
						|
#include <osg/ref_ptr>
 | 
						|
#include <osg/Geometry>
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
    struct Pathgrid;
 | 
						|
}
 | 
						|
 | 
						|
namespace SceneUtil
 | 
						|
{
 | 
						|
    osg::ref_ptr<osg::Geometry> createPathgridGeometry(const ESM::Pathgrid& pathgrid);
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |