forked from External/mage
* updated Riptide Replicator and Volrath's Laboratory * refactored token names * some test fixes * more test fixes * even more test fixes * the final test fixes * fixed a few missed tokens * merge fix * fixed a test failure * fixed test failure * updated ignored verify test * fixed token images not appearing * updated tests
20 lines
330 B
Java
20 lines
330 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
/**
|
|
* @author nantuko
|
|
*/
|
|
public final class EmptyToken extends TokenImpl {
|
|
|
|
public EmptyToken() {
|
|
super(" Token", "");
|
|
}
|
|
|
|
public EmptyToken(final EmptyToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public EmptyToken copy() {
|
|
return new EmptyToken(this);
|
|
}
|
|
}
|