mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
29 lines
371 B
C++
29 lines
371 B
C++
|
#ifndef OPENMW_ESSIMPORT_KLST_H
|
||
|
#define OPENMW_ESSIMPORT_KLST_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <map>
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
struct ESMReader;
|
||
|
}
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
/// Kill Stats
|
||
|
struct KLST
|
||
|
{
|
||
|
void load(ESM::ESMReader& esm);
|
||
|
|
||
|
/// RefId, kill count
|
||
|
std::map<std::string, int> mKillCounter;
|
||
|
|
||
|
int mWerewolfKills;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|