[AKH] Added Vizier of Many Faces.

This commit is contained in:
LevelX2 2017-04-16 13:04:38 +02:00
parent 06fdd17e7d
commit c033868795
22 changed files with 213 additions and 56 deletions

View file

@ -1,6 +1,8 @@
package mage.util.functions;
import java.io.Serializable;
import java.util.UUID;
import mage.abilities.Ability;
import mage.game.Game;
import mage.game.permanent.Permanent;
@ -9,5 +11,5 @@ import mage.game.permanent.Permanent;
*/
public abstract class ApplyToPermanent extends ApplyToMageObject implements Serializable {
public abstract boolean apply(Game game, Permanent permanent);
public abstract boolean apply(Game game, Permanent permanent, Ability source, UUID targetObjectId);
}