34 lines
786 B
C++
34 lines
786 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;
|
|
|
|
// 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;
|
|
|