- some performance improvements
- "daily build". The daily build was compiled in "profile" mode. If you have problems running the exe, or problems with Visual Studio please let me know
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-10-08 12:17:07 +00:00
parent e4a277f9ff
commit 46ef86b9d8
10 changed files with 348 additions and 35 deletions
+1
View File
@@ -43,6 +43,7 @@ class MTGCardInstance: public MTGCard, public Damageable {
int removeBlocker(MTGCardInstance * c);
int setAttacker(int value);
public:
MTGGameZone * currentZone;
Pos* view;
int regenerateTokens;
bool isToken;
+2 -2
View File
@@ -9,9 +9,9 @@ using std::map;
class Subtypes{
protected:
int nb_items;
map<string,int> values;
map<int,string> valuesById;
int nb_items;
public:
static Subtypes * subtypesList;
Subtypes();