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
+11 -1
View File
@@ -22,8 +22,14 @@
namespace AA
{
struct Rank
class Ability;
class Rank
{
public:
Rank() { }
~Rank() { }
int id;
int upper_hotkey_sid;
int lower_hotkey_sid;
int title_sid;
@@ -34,7 +40,11 @@ struct Rank
int spell_type;
int recast_time;
int prev_id;
Rank *prev;
int next_id;
Rank *next;
int total_cost;
Ability *base_ability;
std::unordered_map<int, RankEffect> effects;
std::vector<RankPrereq> prereqs;
};