1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-16 07:10:08 +00:00
OpenMW/apps/essimporter/importklst.hpp

29 lines
370 B
C++
Raw Normal View History

2015-01-19 00:06:45 +00:00
#ifndef OPENMW_ESSIMPORT_KLST_H
#define OPENMW_ESSIMPORT_KLST_H
#include <map>
2022-09-22 18:26:05 +00:00
#include <string>
2015-01-19 00:06:45 +00:00
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
std::map<std::string, int> mKillCounter;
int mWerewolfKills;
};
}
#endif