Missed token

This commit is contained in:
Loki 2011-07-05 10:43:47 +03:00
parent 6b38cc8686
commit e9992ada3d

View file

@ -0,0 +1,21 @@
package mage.counters.common;
import mage.counters.Counter;
/**
* Divine counter.
*
* @author Loki
*/
public class DivineCounter extends Counter<DivineCounter> {
public DivineCounter() {
super("Divine");
this.count = 1;
}
public DivineCounter(int amount) {
super("Divine");
this.count = amount;
}
}