foul-magics/Mage/src/mage/counters/common/DivineCounter.java
2011-07-05 10:43:47 +03:00

21 lines
No EOL
374 B
Java

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;
}
}