summaryrefslogtreecommitdiff
path: root/aux/Hand.java
diff options
context:
space:
mode:
Diffstat (limited to 'aux/Hand.java')
-rw-r--r--aux/Hand.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/aux/Hand.java b/aux/Hand.java
deleted file mode 100644
index ef8da6c..0000000
--- a/aux/Hand.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package mahjong.aux;
-
-/**
- * Created by joe on 12/1/14.
- */
-
-public class Hand {
- static final int total = 13;
- Card[] cards = new Card[13];
-
- // Constructors
- Hand(){}
- Hand(String[] cardNames)
- {
- for (int i = 0; i<total;++i)
- cards[i] = new Card(cardNames[i]);
- }
- Hand(Card[] cards)
- {
- this.cards = cards;
- }
-
- // Some operation
- int calTing()
- {
- return 0;
- }
-}