summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/IHandPanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jrummikub/view/IHandPanel.java')
-rw-r--r--src/jrummikub/view/IHandPanel.java18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/jrummikub/view/IHandPanel.java b/src/jrummikub/view/IHandPanel.java
index a58edab..3436062 100644
--- a/src/jrummikub/view/IHandPanel.java
+++ b/src/jrummikub/view/IHandPanel.java
@@ -8,11 +8,15 @@ import jrummikub.util.Pair;
* The view for a player's hand that displays his stones
*/
public interface IHandPanel extends IStonePanel, IClickable {
- /**
- * Set the player's stones to display on the board
- *
- * @param stones
- * the stones
- */
- public void setStones(Iterable<Pair<Stone, Position>> stones);
+ /**
+ * Set the player's stones to display on the board
+ *
+ * @param stones
+ * the stones
+ */
+ public void setStones(Iterable<Pair<Stone, Position>> stones);
+
+ public void setHandWidth(int width);
+
+ public void setHandHeight(int height);
}