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

View File

@@ -26,7 +26,6 @@ class MTGCard {
int init();
public:
int LevelUp;
int setId;
CardPrimitive * data;
@@ -36,13 +35,11 @@ class MTGCard {
void setMTGId(int id);
void setRarity(char _rarity);
void setLevelcap(int _levelupcap);
//void setImageName( char * value);
void setPrimitive(CardPrimitive * cp);
int getMTGId() const;
int getId() const;
int getLevelcap() const;
char getRarity() const;
char * getImageName();
};