forked from mirror/openmw-tes3mp
25 lines
504 B
C++
25 lines
504 B
C++
#ifndef GAME_MWMECHANICS_CREATURESTATS_H
|
|
#define GAME_MWMECHANICS_CREATURESTATS_H
|
|
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "stat.hpp"
|
|
#include "magiceffects.hpp"
|
|
#include "spells.hpp"
|
|
#include "activespells.hpp"
|
|
|
|
namespace MWMechanics
|
|
{
|
|
struct CreatureStats
|
|
{
|
|
Stat<int> mAttributes[8];
|
|
DynamicStat<int> mDynamic[3]; // health, magicka, fatigue
|
|
int mLevel;
|
|
Spells mSpells;
|
|
ActiveSpells mActiveSpells;
|
|
MagicEffects mMagicEffects;
|
|
};
|
|
}
|
|
|
|
#endif
|