mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
21 lines
372 B
C++
21 lines
372 B
C++
#ifndef GAME_MWMECHANICS_CREATURESTATS_H
|
|
#define GAME_MWMECHANICS_CREATURESTATS_H
|
|
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "stat.hpp"
|
|
|
|
namespace MWMechanics
|
|
{
|
|
struct CreatureStats
|
|
{
|
|
Stat<int> mAttributes[8];
|
|
DynamicStat<int> mDynamic[3]; // health, magicka, fatigue
|
|
int mLevel;
|
|
std::set<std::string> mAbilities;
|
|
};
|
|
}
|
|
|
|
#endif
|