WIP: Responsive header menu

This commit is contained in:
2022-09-08 15:01:02 +02:00
parent af2da01729
commit 0c10e46d1a
4 changed files with 46 additions and 0 deletions
+2
View File
@@ -1,10 +1,12 @@
import {Game} from './game';
import {Player} from './player';
import {GameRules} from './gamerules';
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
rules: GameRules;
games: Game[];
}
+4
View File
@@ -0,0 +1,4 @@
export interface GameRules {
mandatoryAnnouncement: boolean;
}