You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
370 B
C++
29 lines
370 B
C++
#ifndef OPENMW_ESSIMPORT_KLST_H
|
|
#define OPENMW_ESSIMPORT_KLST_H
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
/// Kill Stats
|
|
struct KLST
|
|
{
|
|
void load(ESM::ESMReader& esm);
|
|
|
|
/// RefId, kill count
|
|
std::map<std::string, int> mKillCounter;
|
|
|
|
int mWerewolfKills;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|