* Some rework of card moving after spell countering.

This commit is contained in:
LevelX2 2015-11-05 00:37:30 +01:00
parent 1139495fd7
commit 3de7ff6808
13 changed files with 152 additions and 239 deletions

View file

@ -30,6 +30,7 @@ package mage.game.stack;
import java.util.UUID;
import mage.MageObject;
import mage.abilities.Ability;
import mage.constants.Zone;
import mage.filter.FilterPermanent;
import mage.game.Controllable;
import mage.game.Game;
@ -42,7 +43,7 @@ public interface StackObject extends MageObject, Controllable {
void counter(UUID sourceId, Game game);
void counter(UUID sourceId, Game game, boolean moveToGraveyard);
void counter(UUID sourceId, Game game, Zone zone, boolean owner, boolean top);
Ability getStackAbility();