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

@@ -1,7 +1,8 @@
import Deck from '@/lib/TarokkaDeck';
import generateID from '@/tools/simpleID';
import parseMilliseconds from '@/tools/parseMilliseconds';
import { HOUR, DAY } from '@/constants/time';
import { HOUR, DAY, SETTINGS } from '@/constants';
import { GameState, GameUpdate, Settings, Tilt } from '@/types';
const deck = new Deck();
@@ -84,13 +85,7 @@ export default class GameStore {
players: new Set(),
cards: deck.getHand(),
lastUpdated: Date.now(),
settings: {
positionBack: true,
positionFront: true,
prophecy: true,
notes: true,
cardStyle: 'color',
},
settings: SETTINGS,
tilts: Array.from({ length: 5 }, () => []),
};