mirror of
				https://github.com/TES3MP/TES3MP.git
				synced 2025-11-03 11:02:35 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			288 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			288 B
		
	
	
	
		
			C++
		
	
	
	
	
	
 | 
						|
#include "containerstate.hpp"
 | 
						|
 | 
						|
void ESM::ContainerState::load (ESMReader &esm)
 | 
						|
{
 | 
						|
    ObjectState::load (esm);
 | 
						|
 | 
						|
    mInventory.load (esm);
 | 
						|
}
 | 
						|
 | 
						|
void ESM::ContainerState::save (ESMWriter &esm, bool inInventory) const
 | 
						|
{
 | 
						|
    ObjectState::save (esm, inInventory);
 | 
						|
 | 
						|
    mInventory.save (esm);
 | 
						|
}
 |