forked from External/mage
added cost adjustment framework
This commit is contained in:
parent
57470be67f
commit
9d9c7b0242
4 changed files with 66 additions and 34 deletions
12
Mage/src/main/java/mage/abilities/costs/CostAdjuster.java
Normal file
12
Mage/src/main/java/mage/abilities/costs/CostAdjuster.java
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue