Add ov score

This commit is contained in:
Dennis Schoepf 2021-08-07 22:44:21 +02:00
parent 2be130aedc
commit 63896d10c8
7 changed files with 55 additions and 2 deletions

View file

@ -23,13 +23,15 @@ export interface State {
finishedGame: boolean;
revealablesFinished: number;
showScore: boolean;
showOvScore: boolean;
uid: string;
}
const store = create<State>((set) => ({
uid: null,
showScore: false,
currentIntroStep: 1,
showOvScore: true,
currentIntroStep: 0,
revealablesFinished: 0,
currentScene: Scenes.OVERVIEW,
currentSubproject: null,