- Added Tokens (needs testing !!!)
- Added a few cards that create tokens
This commit is contained in:
wagic.the.homebrew
2008-12-16 14:20:03 +00:00
parent be4fb31ffc
commit 9dfc89815f
24 changed files with 283 additions and 106 deletions

View File

@@ -0,0 +1,12 @@
#ifndef _TOKEN_H_
#define _TOKEN_H_
#include "MTGCardInstance.h"
class Token: public MTGCardInstance{
MTGCardInstance * tokenSource;
public:
Token(string _name, MTGCardInstance * source, int _power=0, int _toughness=0);
};
#endif