moved the level varible from MTGcard to MTGprimitive.

This commit is contained in:
omegablast2002@yahoo.com
2010-10-23 23:48:02 +00:00
parent d7f58285f4
commit 8cb1f0cc7c
6 changed files with 16 additions and 17 deletions
+3
View File
@@ -29,6 +29,7 @@ class CardPrimitive {
string spellTargetType;
int power;
int toughness;
int level;
vector<int>types;
CardPrimitive();
CardPrimitive(CardPrimitive * source);
@@ -74,6 +75,8 @@ class CardPrimitive {
int getPower();
void setToughness(int _toughness);
int getToughness();
void setMaxLevel(int _level);
int getMaxLevel();
const vector<string>& formattedText();
};