mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
Get mobile game working again by implementing IGuiBase interface
This commit is contained in:
@@ -1,28 +1,22 @@
|
||||
package forge.match.input;
|
||||
|
||||
import java.awt.event.MouseEvent;
|
||||
|
||||
import forge.game.card.Card;
|
||||
import forge.game.player.Player;
|
||||
import forge.game.spellability.SpellAbility;
|
||||
|
||||
import java.awt.event.MouseEvent;
|
||||
|
||||
/**
|
||||
* TODO: Write javadoc for this type.
|
||||
*
|
||||
*/
|
||||
public interface Input {
|
||||
|
||||
// showMessage() is always the first method called
|
||||
void showMessageInitial();
|
||||
|
||||
void selectCard(Card c, MouseEvent triggerEvent);
|
||||
|
||||
void selectAbility(SpellAbility ab);
|
||||
|
||||
void selectPlayer(Player player, MouseEvent triggerEven);
|
||||
void selectPlayer(Player player, MouseEvent triggerEvent);
|
||||
|
||||
void selectButtonOK();
|
||||
|
||||
void selectButtonCancel();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user