This commit is contained in:
Jose Conde
2024-07-12 16:27:52 +02:00
parent ca0f1466c2
commit 5f117667a4
29 changed files with 823 additions and 407 deletions

View File

@ -1,8 +1,9 @@
import { PlayerInterface } from "../entities/player/PlayerInterface";
import { PlayerDto } from "./PlayerDto";
export interface GameSummary {
gameId: string;
isBlocked: boolean;
isTied: boolean;
winner: PlayerInterface | null;
winner: PlayerDto;
score: { name: string; score: number; }[]
}