mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 00:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef _ESM_DOOR_H
 | 
						|
#define _ESM_DOOR_H
 | 
						|
 | 
						|
#include "record.hpp"
 | 
						|
#include "esm_reader.hpp"
 | 
						|
#include "esm_writer.hpp"
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
 | 
						|
struct Door : public Record
 | 
						|
{
 | 
						|
    std::string name, model, script, openSound, closeSound;
 | 
						|
 | 
						|
    void load(ESMReader &esm);
 | 
						|
    void save(ESMWriter &esm);
 | 
						|
 | 
						|
    int getName() { return REC_DOOR; }
 | 
						|
};
 | 
						|
}
 | 
						|
#endif
 |