setting to disable tilt

This commit is contained in:
Gavin McDonald
2025-07-01 09:21:41 -04:00
parent 1dbe6b7ec0
commit 6b3ab9a54e
6 changed files with 164 additions and 107 deletions

View File

@@ -4,11 +4,18 @@ export type CardStyle = 'standard' | 'color' | 'grayscale';
export type Deck = 'high' | 'common' | 'both' | 'back' | 'all';
export interface Settings {
cardStyle: CardStyle;
notes: boolean;
positionBack: boolean;
positionFront: boolean;
prophecy: boolean;
notes: boolean;
cardStyle: CardStyle;
tilt: boolean;
remoteTilt: boolean;
}
export interface LocalSettings {
tilt: boolean;
remoteTilt: boolean;
}
export interface StandardCard {