mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-03 23:56:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "loaddoor.hpp"
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
 | 
						|
void Door::load(ESMReader &esm)
 | 
						|
{
 | 
						|
    model = esm.getHNString("MODL");
 | 
						|
    name = esm.getHNOString("FNAM");
 | 
						|
    script = esm.getHNOString("SCRI");
 | 
						|
    openSound = esm.getHNOString("SNAM");
 | 
						|
    closeSound = esm.getHNOString("ANAM");
 | 
						|
}
 | 
						|
 | 
						|
}
 |