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.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/aux/set/Hand.java b/aux/set/Hand.java
new file mode 100644
index 0000000..b715e54
--- /dev/null
+++ b/aux/set/Hand.java
@@ -0,0 +1,26 @@
+package mahjong.aux.set;
+
+import mahjong.aux.Card;
+
+/**
+ * Created by joe on 12/1/14.
+ */
+public class Hand extends Set {
+ public Hand()
+ {
+ super();
+ }
+ public Hand(String[] cardNames)
+ {
+ super(cardNames);
+ }
+ public Hand(Card[] cards)
+ {
+ super(cards);
+ }
+
+ public Set[] generateEnds()
+ {
+ return null;
+ }
+}