mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 01:26:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "loadrace.hpp"
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
 | 
						|
void Race::load(ESMReader &esm)
 | 
						|
{
 | 
						|
    name = esm.getHNString("FNAM");
 | 
						|
    esm.getHNT(data, "RADT", 140);
 | 
						|
    powers.load(esm);
 | 
						|
    description = esm.getHNOString("DESC");
 | 
						|
}
 | 
						|
 | 
						|
}
 |