* Marshland Bloodcaster - fixed game freeze on usage;

* Kentaro, the Smiling Cat - fixed game freeze on usage;
This commit is contained in:
Oleg Agafonov 2021-08-02 17:40:35 +04:00
parent 042b58dc5d
commit a5b41ea920
2 changed files with 22 additions and 5 deletions

View file

@ -3,10 +3,12 @@ package mage.abilities.costs;
import mage.abilities.Ability;
import mage.game.Game;
public interface DynamicCost {
Cost getCost(Ability ability, Game game);
String getText(Ability ability, Game game);
import java.io.Serializable;
public interface DynamicCost extends Serializable {
Cost getCost(Ability ability, Game game);
String getText(Ability ability, Game game);
}