forked from External/mage
added getMana method to card
This commit is contained in:
parent
6d589abe6d
commit
79eb8cede7
5 changed files with 34 additions and 9 deletions
|
|
@ -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.");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue