summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/IHand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jrummikub/model/IHand.java')
-rw-r--r--src/jrummikub/model/IHand.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jrummikub/model/IHand.java b/src/jrummikub/model/IHand.java
index a58c7be..afe5c12 100644
--- a/src/jrummikub/model/IHand.java
+++ b/src/jrummikub/model/IHand.java
@@ -28,5 +28,11 @@ public interface IHand extends IStoneTray<Stone> {
*/
int getStonePoints();
+ /**
+ * Tests whether it is possible to lay down an initial meld using the stones
+ * on the hand
+ *
+ * @return true if an initial meld is possible
+ */
public abstract boolean isInitialMeldPossible();
}