14 lines
246 B
C++
14 lines
246 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
|