mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 19:26:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OPENMW_ESSIMPORT_IMPORTCNTC_H
 | |
| #define OPENMW_ESSIMPORT_IMPORTCNTC_H
 | |
| 
 | |
| #include "importinventory.hpp"
 | |
| 
 | |
| namespace ESM
 | |
| {
 | |
|     class ESMReader;
 | |
| }
 | |
| 
 | |
| namespace ESSImport
 | |
| {
 | |
| 
 | |
|     /// Changed container contents
 | |
|     struct CNTC
 | |
|     {
 | |
|         int32_t mIndex;
 | |
| 
 | |
|         Inventory mInventory;
 | |
| 
 | |
|         void load(ESM::ESMReader& esm);
 | |
|     };
 | |
| 
 | |
| }
 | |
| #endif
 |