13 lines
250 B
C++
13 lines
250 B
C++
#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
|