-removing useless code
-fixed a few cards (incorrect set)
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-07-18 14:26:58 +00:00
parent da80398340
commit 01c62d04bf
13 changed files with 46 additions and 119 deletions
-1
View File
@@ -15,7 +15,6 @@ class MTGGamePhase: public ActionElement {
JLBFont * mFont;
public:
MTGGamePhase(int id);
virtual void Render();
virtual void Update(float dt);
bool CheckUserInput(u32 key);
virtual MTGGamePhase * clone() const;
-1
View File
@@ -15,7 +15,6 @@ class OptionItem:public JGuiObject{
float x, y;
OptionItem(string _id, string _displayValue, int _maxValue = 1, int _increment = 1);
~OptionItem();
virtual void Render();
virtual void Update(float dt);
virtual void Entering();
-1
View File
@@ -23,7 +23,6 @@ class Player: public Damageable{
JQuad * mAvatar;
int canPutLandsIntoPlay;
MTGPlayerCards * game;
int testLife();
int afterDamage();
Player(MTGPlayerCards * _deck, string deckFile, string deckFileSmall);
virtual ~Player();