-fix issue related to drawing card (underworld dreams)
This commit is contained in:
wagic.the.homebrew@gmail.com
2010-02-06 07:32:59 +00:00
parent cc1d479070
commit d50aecdde4
5 changed files with 25 additions and 23 deletions

View File

@@ -74,7 +74,6 @@ class MTGGameZone {
MTGGameZone();
~MTGGameZone();
void shuffle();
virtual MTGCardInstance * draw();
void addCard(MTGCardInstance * card);
void debugPrint();
MTGCardInstance * removeCard(MTGCardInstance * card, int createCopy = 1);
@@ -96,7 +95,6 @@ class MTGGameZone {
class MTGLibrary: public MTGGameZone {
public:
void shuffleTopToBottom(int nbcards);
MTGCardInstance * draw();
virtual ostream& toString(ostream&) const;
const char * getName(){return "library";}
};