Responsiveness wohoooo

This commit is contained in:
2022-09-03 15:20:09 +02:00
parent 7b17b9b28a
commit 94f5b5c46b
4 changed files with 24 additions and 5 deletions
+1
View File
@@ -8,4 +8,5 @@ export interface Game {
foxesCaught: number;
announcements: Announcement[];
solo?: Solo;
againstTheElders: boolean;
}
+10
View File
@@ -0,0 +1,10 @@
import {Game} from './game';
import {Player} from './player';
export interface GameNight {
gameNightId: number;
date: Date;
players: Player[]; // We need players here and in the game because maybe we have 5 players for a game night and
// they switch every game
games: Game[];
}