initial commit
This commit is contained in:
8
src/game/dto/GameSummary.ts
Normal file
8
src/game/dto/GameSummary.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { PlayerInterface } from "../entities/player/PlayerInterface";
|
||||
|
||||
export interface GameSummary {
|
||||
gameId: string;
|
||||
isBlocked: boolean;
|
||||
isTied: boolean;
|
||||
winner: PlayerInterface | null;
|
||||
}
|
Reference in New Issue
Block a user