2015-01-19 00:06:45 +00:00
|
|
|
#ifndef OPENMW_ESSIMPORT_KLST_H
|
|
|
|
#define OPENMW_ESSIMPORT_KLST_H
|
|
|
|
|
2023-12-17 14:21:12 +00:00
|
|
|
#include <cstdint>
|
2015-01-19 00:06:45 +00:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace ESM
|
|
|
|
{
|
2015-01-26 00:17:16 +00:00
|
|
|
class ESMReader;
|
2015-01-19 00:06:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace ESSImport
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Kill Stats
|
|
|
|
struct KLST
|
|
|
|
{
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
|
|
|
|
|
|
/// RefId, kill count
|
2023-12-17 13:03:45 +00:00
|
|
|
std::map<std::string, int32_t> mKillCounter;
|
2015-01-19 00:06:45 +00:00
|
|
|
|
2023-12-17 13:03:45 +00:00
|
|
|
int32_t mWerewolfKills;
|
2015-01-19 00:06:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|