mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 04:26:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			370 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			370 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_ESSIMPORT_KLST_H
 | 
						|
#define OPENMW_ESSIMPORT_KLST_H
 | 
						|
 | 
						|
#include <map>
 | 
						|
#include <string>
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
    class ESMReader;
 | 
						|
}
 | 
						|
 | 
						|
namespace ESSImport
 | 
						|
{
 | 
						|
 | 
						|
    /// Kill Stats
 | 
						|
    struct KLST
 | 
						|
    {
 | 
						|
        void load(ESM::ESMReader& esm);
 | 
						|
 | 
						|
        /// RefId, kill count
 | 
						|
        std::map<std::string, int> mKillCounter;
 | 
						|
 | 
						|
        int mWerewolfKills;
 | 
						|
    };
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |