mirror of
https://github.com/Vikeo/LifeTrinket.git
synced 2025-11-15 15:27:59 +00:00
22 lines
486 B
TypeScript
22 lines
486 B
TypeScript
export enum Orientation {
|
|
OppositeLandscape = 'opposite-landscape',
|
|
Landscape = 'landscape',
|
|
Portrait = 'portrait',
|
|
}
|
|
|
|
export type Settings = {
|
|
keepAwake: boolean;
|
|
showStartingPlayer: boolean;
|
|
goFullscreenOnStart: boolean;
|
|
};
|
|
|
|
export type InitialGameSettings = {
|
|
startingLifeTotal: number;
|
|
useCommanderDamage: boolean;
|
|
gameFormat?: GameFormat;
|
|
numberOfPlayers: number;
|
|
orientation: Orientation;
|
|
};
|
|
|
|
type GameFormat = 'commander' | 'standard' | 'two-headed-giant';
|