-Adding some missing files to the repository

-Improved "auto" parser : added "lord", improved "draw"
This commit is contained in:
wagic.the.homebrew
2008-11-03 13:53:06 +00:00
parent 4b762565ce
commit 89dae65237
52 changed files with 12924 additions and 79 deletions

View File

@@ -13,7 +13,7 @@ class MTGDeck;
class Cmp1 { // compares cards by their name
public:
bool operator()(MTGCard * card1, MTGCard * card2) {
bool operator()(MTGCard * card1, MTGCard * card2) const {
if (!card2) return true;
if (!card1) return false;
string name1 = card1->name;