remove console log

This commit is contained in:
Viktor Rådberg
2023-10-21 14:29:53 +02:00
parent 8f80936745
commit 4891c670ae
2 changed files with 3 additions and 1 deletions

View File

@@ -9,6 +9,9 @@ export type Settings = {
export type InitialGameSettings = {
startingLifeTotal: number;
useCommanderDamage: boolean;
gameFormat: GameFormat;
numberOfPlayers: number;
gridAreas: GridTemplateAreas;
};
type GameFormat = 'commander' | 'standard' | 'two-headed-giant';