mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
* Marshland Bloodcaster - fixed game freeze on usage;
* Kentaro, the Smiling Cat - fixed game freeze on usage;
This commit is contained in:
parent
042b58dc5d
commit
a5b41ea920
2 changed files with 22 additions and 5 deletions
|
|
@ -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);
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue