1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 03:39:14 +00:00
OpenMW/apps/essimporter/importklst.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
397 B
C++
Raw Normal View History

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
{
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