removed draw method from GameObserver as it is no longer used since the refactor of the

player mulligan code.
This commit is contained in:
techdragon.nguyen@gmail.com
2011-01-31 08:38:14 +00:00
parent 6a5eeff8dd
commit 6ddaf8b74b
2 changed files with 0 additions and 5 deletions

View File

@@ -78,7 +78,6 @@ class GameObserver{
void removeObserver(ActionElement * observer);
void startGame(Rules * rules);
void untapPhase();
void draw();
int isInPlay(MTGCardInstance * card);
int isInGrave(MTGCardInstance * card);
int isInExile(MTGCardInstance * card);

View File

@@ -1054,10 +1054,6 @@ int GameObserver::isInExile(MTGCardInstance * card)
}
return 0;
}
void GameObserver::draw()
{
currentPlayer->game->drawFromLibrary();
}
void GameObserver::cleanupPhase()
{