mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 04:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			435 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			435 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_ESSIMPORT_CELLREF_H
 | 
						|
#define OPENMW_ESSIMPORT_CELLREF_H
 | 
						|
 | 
						|
#include <string>
 | 
						|
 | 
						|
#include <components/esm/cellref.hpp>
 | 
						|
 | 
						|
#include "importacdt.hpp"
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
    class ESMReader;
 | 
						|
}
 | 
						|
 | 
						|
namespace ESSImport
 | 
						|
{
 | 
						|
 | 
						|
    struct CellRef : public ActorData
 | 
						|
    {
 | 
						|
        std::string mIndexedRefId;
 | 
						|
 | 
						|
        std::string mScript;
 | 
						|
 | 
						|
        bool mEnabled;
 | 
						|
 | 
						|
        bool mDeleted;
 | 
						|
 | 
						|
        void load(ESM::ESMReader& esm);
 | 
						|
    };
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |