added getMana method to card

This commit is contained in:
BetaSteward 2010-12-01 01:59:13 +00:00
parent 6d589abe6d
commit 79eb8cede7
5 changed files with 34 additions and 9 deletions

View file

@ -28,6 +28,7 @@
package mage.game.stack;
import mage.Mana;
import mage.abilities.SpellAbility;
import mage.game.*;
import java.util.List;
@ -313,4 +314,9 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
public int getCardNumber() {
return card.getCardNumber();
}
@Override
public List<Mana> getMana() {
throw new UnsupportedOperationException("Not supported yet.");
}
}