create target adjuster interface

This commit is contained in:
Evan Kranzler 2018-09-17 08:49:46 -04:00
parent d3aea0270c
commit 3265b70e2f

View file

@ -0,0 +1,10 @@
package mage.target.targetadjustment;
/**
*
* @author TheElk801
*/
public interface TargetAdjuster {
public void adjustTargets(Ability ability, Game game);
}