feat(SCOPONE-0009): complete iteration 0 dealer AI
This commit is contained in:
@@ -14,6 +14,8 @@ export interface Capture {
|
||||
|
||||
export type PlayerIndex = 0 | 1 | 2 | 3;
|
||||
|
||||
export type DealerRelativeRole = 'first-hand' | 'second-hand' | 'third-hand' | 'dealer';
|
||||
|
||||
export type Difficulty = 'beginner' | 'advanced' | 'master';
|
||||
|
||||
export interface Player {
|
||||
@@ -29,6 +31,7 @@ export interface GameState {
|
||||
players: [Player, Player, Player, Player];
|
||||
table: Card[];
|
||||
matchStartingPlayer: PlayerIndex;
|
||||
dealer: PlayerIndex;
|
||||
currentPlayer: PlayerIndex;
|
||||
roundOver: boolean;
|
||||
gameOver: boolean;
|
||||
|
||||
Reference in New Issue
Block a user