More aa work, it actually loads yay

This commit is contained in:
KimLS
2015-06-08 20:06:14 -07:00
parent 361c93b689
commit 250d0cc903
11 changed files with 469 additions and 38 deletions
+14 -1
View File
@@ -30,14 +30,27 @@
namespace AA
{
struct Ability
class Ability
{
public:
Ability() { }
~Ability() { }
Rank *GetMaxRank();
Rank *GetRankByPointsSpent(int current_level);
int GetMaxLevel(bool force_calc = false);
std::string name;
int expansion;
int category;
int classes;
uint32 account_time_required;
bool grant_only;
int type;
bool expendable;
int first_rank_id;
int max_level;
Rank *first;
};
}