summaryrefslogtreecommitdiff
path: root/aux/Hand.java
diff options
context:
space:
mode:
authorJoe Zhao <ztuowen@gmail.com>2014-12-02 21:40:36 +0800
committerJoe Zhao <ztuowen@gmail.com>2014-12-02 21:40:36 +0800
commit134770f0cd68eaf0525e03bb6e6cfbd03153fdb7 (patch)
treeeb07c5399b1b9fef21ee82efe12415b86c9237b0 /aux/Hand.java
parent83122b34976d012fc5524152b170adcfef7eef60 (diff)
downloadMahjong-134770f0cd68eaf0525e03bb6e6cfbd03153fdb7.tar.gz
Mahjong-134770f0cd68eaf0525e03bb6e6cfbd03153fdb7.tar.bz2
Mahjong-134770f0cd68eaf0525e03bb6e6cfbd03153fdb7.zip
Various UI
Tested Read Card
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;
- }
-}