first commit

This commit is contained in:
hujun
2026-03-20 12:50:41 +08:00
commit 24fce055fd
88 changed files with 7655 additions and 0 deletions

View File

@@ -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;
}
}