From e9992ada3d4ee8ddff129e73682d1ceb69930556 Mon Sep 17 00:00:00 2001 From: Loki Date: Tue, 5 Jul 2011 10:43:47 +0300 Subject: [PATCH] Missed token --- .../mage/counters/common/DivineCounter.java | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Mage/src/mage/counters/common/DivineCounter.java diff --git a/Mage/src/mage/counters/common/DivineCounter.java b/Mage/src/mage/counters/common/DivineCounter.java new file mode 100644 index 00000000000..1e828d6f928 --- /dev/null +++ b/Mage/src/mage/counters/common/DivineCounter.java @@ -0,0 +1,21 @@ +package mage.counters.common; + +import mage.counters.Counter; + +/** + * Divine counter. + * + * @author Loki + */ +public class DivineCounter extends Counter { + + public DivineCounter() { + super("Divine"); + this.count = 1; + } + + public DivineCounter(int amount) { + super("Divine"); + this.count = amount; + } +} \ No newline at end of file