Make mouseover on prompt pane show cardview of the controlling card if there is one

This commit is contained in:
pfps
2017-01-20 00:48:01 +00:00
parent 6e706f3662
commit 00ecfe7e49
15 changed files with 97 additions and 18 deletions

View File

@@ -155,6 +155,11 @@ public class MatchController extends AbstractGuiGame {
public void showPromptMessage(final PlayerView player, final String message) {
view.getPrompt(player).setMessage(message);
}
@Override
public void showPromptMessage(final PlayerView player, final String message, final SpellAbilityView sav) {
view.getPrompt(player).setMessage(message);
}
@Override
public void updateButtons(final PlayerView owner, final String label1, final String label2, final boolean enable1, final boolean enable2, final boolean focus1) {