removed extraneous function. Not meant for last check in

This commit is contained in:
techdragon.nguyen@gmail.com
2011-02-09 13:21:26 +00:00
parent 2c0da5e7e6
commit 4cbf3ddeb5
2 changed files with 0 additions and 7 deletions

View File

@@ -75,7 +75,6 @@ public:
int addHybrid(int c1, int v1, int c2, int v2);
int tryToPayHybrids(ManaCostHybrid * _hybrids[], int _nbhybrids, int diff[]);
int tryToPayHybrids(vector<ManaCostHybrid *> hybridList, int diff[]);
void randomDiffHybrids(ManaCost * _cost, int diff[]);
int add(ManaCost * _cost);
int pay (ManaCost * _cost);

View File

@@ -603,12 +603,6 @@ void ManaCost::randomDiffHybrids(ManaCost * _cost, int diff[])
diff[h->color1 * 2 + 1] -= h->value1;
}
}
int ManaCost::tryToPayHybrids(vector<ManaCostHybrid *> hybridList, int diff[])
{
if (hybridList.empty())
return 1;
}
/**
starting from the end of the array (diff)