This commit is contained in:
wzdwc
2021-03-17 08:44:45 +08:00
parent 3547f9ed94
commit 8fed10a4a7
2 changed files with 19 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
enum PlayerType {
READY,
SIT_DOWN,
GAMING,
}
export interface IPlayer {
counter: number;
nickName: string;
actionSize: number;
actionCommand: string;
type: string;
userId?: number;
handCard?: string[];
buyIn: number;
status: number;
income?: number;
isSit: boolean;
}