WIP: Add Game Component
- Create Component - Add logic to switch "pages" in component - add "select player" logic
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
export enum Announcement {
|
||||
RE = 0,
|
||||
KONTRA = 1,
|
||||
NO_NINETY = 2,
|
||||
NO_SIXTY = 3,
|
||||
NO_THIRTY = 4
|
||||
CONTRA = 1,
|
||||
RE_NO_NINETY = 2.1,
|
||||
CONTRA_NO_NINETY = 2.2,
|
||||
RE_NO_SIXTY = 3.1,
|
||||
CONTRA_NO_SIXTY = 3.2,
|
||||
RE_NO_THIRTY = 4.1,
|
||||
CONTRA_NO_THIRTY = 4.2
|
||||
}
|
||||
|
||||
@@ -4,9 +4,9 @@ export interface Player {
|
||||
firebonkId: number;
|
||||
uuid: string;
|
||||
firstName: string;
|
||||
finalCardScore: number;
|
||||
gamePoints: number;
|
||||
hadMarriage: boolean;
|
||||
hadTrumpHandoff: boolean;
|
||||
team: Team;
|
||||
finalCardScore?: number;
|
||||
gamePoints?: number;
|
||||
hadMarriage?: boolean;
|
||||
hadTrumpHandoff?: boolean;
|
||||
team?: Team;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user