forked from External/mage
15 lines
397 B
Java
15 lines
397 B
Java
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;
|
|
|
|
/**
|
|
* @author noxx
|
|
*/
|
|
public abstract class ApplyToPermanent extends ApplyToMageObject implements Serializable {
|
|
|
|
public abstract boolean apply(Game game, Permanent permanent, Ability source, UUID targetObjectId);
|
|
}
|