summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model
diff options
context:
space:
mode:
Diffstat (limited to 'src/jrummikub/model')
-rw-r--r--src/jrummikub/model/Hand.java6
-rw-r--r--src/jrummikub/model/IHand.java9
2 files changed, 14 insertions, 1 deletions
diff --git a/src/jrummikub/model/Hand.java b/src/jrummikub/model/Hand.java
index f415620..7294ced 100644
--- a/src/jrummikub/model/Hand.java
+++ b/src/jrummikub/model/Hand.java
@@ -261,4 +261,10 @@ public class Hand extends StoneTray<Stone> implements IHand {
}
return false;
}
+
+ @Override
+ public int getIdenticalStoneCount() {
+ // TODO Auto-generated method stub
+ return 0;
+ }
}
diff --git a/src/jrummikub/model/IHand.java b/src/jrummikub/model/IHand.java
index afe5c12..5ac7537 100644
--- a/src/jrummikub/model/IHand.java
+++ b/src/jrummikub/model/IHand.java
@@ -34,5 +34,12 @@ public interface IHand extends IStoneTray<Stone> {
*
* @return true if an initial meld is possible
*/
- public abstract boolean isInitialMeldPossible();
+ public boolean isInitialMeldPossible();
+
+ /**
+ * Counts the pairs of identical stones
+ *
+ * @return number of identical stone pairs
+ */
+ public int getIdenticalStoneCount();
}