Added static and colored hints for cards

This commit is contained in:
Oleg Agafonov 2019-02-04 18:48:45 +04:00
parent fce93c66e1
commit 13ed3c6dbd
7 changed files with 120 additions and 10 deletions

View file

@ -0,0 +1,16 @@
package mage.abilities.hint;
import mage.game.Game;
import java.io.Serializable;
import java.util.UUID;
/**
* @author JayDi85
*/
public interface Hint extends Serializable {
String getText(Game game, UUID sourceId);
Hint copy();
}