summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/IPlayerPanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jrummikub/view/IPlayerPanel.java')
-rw-r--r--src/jrummikub/view/IPlayerPanel.java13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/jrummikub/view/IPlayerPanel.java b/src/jrummikub/view/IPlayerPanel.java
index 3fb8709..f1f8f95 100644
--- a/src/jrummikub/view/IPlayerPanel.java
+++ b/src/jrummikub/view/IPlayerPanel.java
@@ -10,7 +10,7 @@ public interface IPlayerPanel {
* Sets the time the player has left for his turn
*
* @param time
- * the time left
+ * the time left
*/
public void setTimeLeft(int time);
@@ -23,8 +23,8 @@ public interface IPlayerPanel {
public IEvent getSortByGroupsEvent();
/**
- * The sort by runs event is emitted when the player wants to sort his stones
- * by runs
+ * The sort by runs event is emitted when the player wants to sort his
+ * stones by runs
*
* @return the event
*/
@@ -36,4 +36,11 @@ public interface IPlayerPanel {
* @return the event
*/
public IEvent getEndTurnEvent();
+
+ /**
+ * The redeal event is emitted when the player wants to get new stones
+ *
+ * @return the event
+ */
+ IEvent getRedealEvent();
}