From 83122b34976d012fc5524152b170adcfef7eef60 Mon Sep 17 00:00:00 2001 From: Joe Zhao Date: Tue, 2 Dec 2014 18:57:51 +0800 Subject: First commit --- aux/set/Hand.java | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 aux/set/Hand.java (limited to 'aux/set/Hand.java') 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; + } +} -- cgit v1.2.3-70-g09d2