Erwan
- Added Tokens (needs testing !!!) - Added a few cards that create tokens
This commit is contained in:
12
projects/mtg/include/Token.h
Normal file
12
projects/mtg/include/Token.h
Normal 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
|
||||
Reference in New Issue
Block a user