forked from External/mage
New way of copying permanents - supports copies of copies. +1 test pass.
This commit is contained in:
parent
e5b6807d91
commit
0d732e8f86
11 changed files with 149 additions and 49 deletions
12
Mage/src/mage/util/functions/ApplyToPermanent.java
Normal file
12
Mage/src/mage/util/functions/ApplyToPermanent.java
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
package mage.util.functions;
|
||||
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
||||
/**
|
||||
* @author noxx
|
||||
*/
|
||||
public abstract class ApplyToPermanent {
|
||||
|
||||
public abstract Boolean apply(Game game, Permanent permanent);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue