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.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/jrummikub/view/IHandPanel.java b/src/jrummikub/view/IHandPanel.java
index 3436062..3a76780 100644
--- a/src/jrummikub/view/IHandPanel.java
+++ b/src/jrummikub/view/IHandPanel.java
@@ -16,7 +16,19 @@ public interface IHandPanel extends IStonePanel, IClickable {
*/
public void setStones(Iterable<Pair<Stone, Position>> stones);
+ /**
+ * Set the number of stones that fit on the hand horizontally
+ *
+ * @param width
+ * number of stones
+ */
public void setHandWidth(int width);
+ /**
+ * Set the number of stones that fit on the hand vertically
+ *
+ * @param height
+ * number of stones
+ */
public void setHandHeight(int height);
}