mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 12:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_ESM_GLOB_H
 | 
						|
#define OPENMW_ESM_GLOB_H
 | 
						|
 | 
						|
#include "defs.hpp"
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
 | 
						|
class ESMReader;
 | 
						|
class ESMWriter;
 | 
						|
 | 
						|
/*
 | 
						|
 * Global script variables
 | 
						|
 */
 | 
						|
 | 
						|
struct Global
 | 
						|
{
 | 
						|
    unsigned mValue;
 | 
						|
    VarType mType;
 | 
						|
 | 
						|
    void load(ESMReader &esm);
 | 
						|
    void save(ESMWriter &esm);
 | 
						|
};
 | 
						|
}
 | 
						|
#endif
 |