mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
44 lines
825 B
C++
44 lines
825 B
C++
#ifndef _ESM_ATTR_H
|
|
#define _ESM_ATTR_H
|
|
|
|
#include <string>
|
|
|
|
namespace ESM {
|
|
|
|
/*
|
|
* Attribute definitions
|
|
*/
|
|
|
|
struct Attribute
|
|
{
|
|
enum AttributeID
|
|
{
|
|
Strength = 0,
|
|
Intelligence = 1,
|
|
Willpower = 2,
|
|
Agility = 3,
|
|
Speed = 4,
|
|
Endurance = 5,
|
|
Personality = 6,
|
|
Luck = 7,
|
|
Length
|
|
};
|
|
|
|
AttributeID mId;
|
|
std::string mName, mDescription;
|
|
|
|
static const AttributeID sAttributeIds[Length];
|
|
static const std::string sGmstAttributeIds[Length];
|
|
static const std::string sGmstAttributeDescIds[Length];
|
|
static const std::string sAttributeIcons[Length];
|
|
|
|
Attribute(AttributeID id, const std::string &name, const std::string &description)
|
|
: mId(id)
|
|
, mName(name)
|
|
, mDescription(description)
|
|
{
|
|
}
|
|
};
|
|
}
|
|
#endif
|