[MRD] Oblivion Stone

This commit is contained in:
Loki 2011-09-04 23:04:09 +03:00
parent 106e26a4a2
commit ac70150512
3 changed files with 132 additions and 0 deletions

View file

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