43 lines
1010 B
C++
43 lines
1010 B
C++
|
|
//Jobs
|
|
constexpr const int MAGE = 0;
|
|
constexpr const int ALCHIMIST = 1;
|
|
constexpr const int WARRIOR = 2;
|
|
constexpr const int ENGINEER = 3;
|
|
constexpr const int ARCHER = 4;
|
|
constexpr const int TAMER = 5;
|
|
|
|
//Elements
|
|
constexpr const int FIRE = 0;
|
|
constexpr const int AIR = 1;
|
|
constexpr const int WATER = 2;
|
|
constexpr const int EARTH = 3;
|
|
constexpr const int EATHER = 4;
|
|
|
|
//Stats
|
|
constexpr const int HEALTH = 0;
|
|
constexpr const int SHIELD = 1;
|
|
constexpr const int SPEED = 2;
|
|
constexpr const int MANA = 3;
|
|
constexpr const int ENERGY = 4;
|
|
constexpr const int TAME = 5;
|
|
constexpr const int XP = 6;
|
|
|
|
// Combinaisons
|
|
constexpr const int UP = 0;
|
|
constexpr const int RIGHT = 1;
|
|
constexpr const int DOWN = 2;
|
|
constexpr const int LEFT = 3;
|
|
constexpr const int END_SPELL = 9;
|
|
|
|
//Buttons style
|
|
constexpr int BUTTON_BASIC = 0;
|
|
constexpr int BUTTON_INACTIVE = 1;
|
|
constexpr int BUTTON_DANGER = 2;
|
|
|
|
//Buttons size
|
|
constexpr const int BUTTON_SMALL = 0;
|
|
constexpr const int BUTTON_MEDIUM = 1;
|
|
constexpr const int BUTTON_BIG = 2;
|
|
|