mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 11:26:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_COMPONENTS_MISC_OSGUSERVALUES_H
 | 
						|
#define OPENMW_COMPONENTS_MISC_OSGUSERVALUES_H
 | 
						|
 | 
						|
#include <string>
 | 
						|
 | 
						|
namespace Misc
 | 
						|
{
 | 
						|
    struct OsgUserValues
 | 
						|
    {
 | 
						|
        static const std::string sFileHash;
 | 
						|
        static const std::string sExtraData;
 | 
						|
        static const std::string sXSoftEffect;
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |