summaryrefslogtreecommitdiff
path: root/aux/set/Hand.java
diff options
context:
space:
mode:
Diffstat (limited to 'aux/set/Hand.java')
-rw-r--r--aux/set/Hand.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/aux/set/Hand.java b/aux/set/Hand.java
index a865a90..68866bb 100644
--- a/aux/set/Hand.java
+++ b/aux/set/Hand.java
@@ -85,4 +85,21 @@ public class Hand extends Set {
accountant.add(card,-1);
return gang;
}
+
+ public boolean isAble(Meld.Type type, Card card)
+ {
+ boolean res = false;
+ switch (type)
+ {
+ case Chi:
+ break;
+ case aGang:
+ break;
+ case jGang:
+ break;
+ case Peng:
+ break;
+ }
+ return res;
+ }
}