first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.xuezhanmaster.game.domain;
|
||||
|
||||
public enum TileSuit {
|
||||
WAN("万"),
|
||||
TONG("筒"),
|
||||
TIAO("条");
|
||||
|
||||
private final String label;
|
||||
|
||||
TileSuit(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user