mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:49:54 +00:00
28 lines
371 B
C++
28 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
|