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.java15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/jrummikub/view/IHandPanel.java b/src/jrummikub/view/IHandPanel.java
index 3a76780..ea08f86 100644
--- a/src/jrummikub/view/IHandPanel.java
+++ b/src/jrummikub/view/IHandPanel.java
@@ -17,18 +17,7 @@ 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
+ * Resets the rows currently displayed
*/
- public void setHandHeight(int height);
+ void resetCurrentRow();
}