added cost adjustment framework

This commit is contained in:
Evan Kranzler 2018-09-30 20:12:07 -04:00
parent 57470be67f
commit 9d9c7b0242
4 changed files with 66 additions and 34 deletions

View file

@ -0,0 +1,12 @@
package mage.abilities.costs;
import mage.abilities.Ability;
import mage.game.Game;
/**
* @author TheElk801
*/
public interface CostAdjuster {
void adjustCosts(Ability ability, Game game);
}