mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Missed token
This commit is contained in:
parent
6b38cc8686
commit
e9992ada3d
1 changed files with 21 additions and 0 deletions
21
Mage/src/mage/counters/common/DivineCounter.java
Normal file
21
Mage/src/mage/counters/common/DivineCounter.java
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue