1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 03:45:35 +00:00
openmw/apps/essimporter/importklst.hpp

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