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