initial commit

This commit is contained in:
Jose Conde
2024-07-05 01:19:43 +02:00
commit 733ac3891f
43 changed files with 3660 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import { PlayerInterface } from "../entities/player/PlayerInterface";
export interface GameSummary {
gameId: string;
isBlocked: boolean;
isTied: boolean;
winner: PlayerInterface | null;
}