This commit is contained in:
Viktor Rådberg
2023-12-24 14:44:13 +01:00
parent bdbea848d3
commit 77e8a79a35

View File

@@ -1,5 +1,7 @@
import { GridTemplateAreas } from '../Data/GridTemplateAreas';
type Orientation = 'side' | 'landscape' | 'portrait';
export type Settings = {
keepAwake: boolean;
showStartingPlayer: boolean;
@@ -9,9 +11,10 @@ export type Settings = {
export type InitialGameSettings = {
startingLifeTotal: number;
useCommanderDamage: boolean;
gameFormat: GameFormat;
gameFormat?: GameFormat;
numberOfPlayers: number;
gridAreas: GridTemplateAreas;
orientation?: Orientation;
};
type GameFormat = 'commander' | 'standard' | 'two-headed-giant';