mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 01:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			No EOL
		
	
	
		
			284 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			No EOL
		
	
	
		
			284 B
		
	
	
	
		
			C++
		
	
	
	
	
	
 | 
						|
#include "creaturestate.hpp"
 | 
						|
 | 
						|
void ESM::CreatureState::load (ESMReader &esm)
 | 
						|
{
 | 
						|
    ObjectState::load (esm);
 | 
						|
 | 
						|
    mInventory.load (esm);
 | 
						|
}
 | 
						|
 | 
						|
void ESM::CreatureState::save (ESMWriter &esm, bool inInventory) const
 | 
						|
{
 | 
						|
    ObjectState::save (esm, inInventory);
 | 
						|
 | 
						|
    mInventory.save (esm);
 | 
						|
} |