Files
TexasPokerGame/client/src/interface/IPlayer.ts
T
2020-09-12 20:52:18 +08:00

20 lines
316 B
TypeScript

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