Implement score
This commit is contained in:
parent
dadcdc92ef
commit
0c542da265
7 changed files with 85 additions and 5 deletions
|
|
@ -22,11 +22,15 @@ export interface State {
|
|||
setProjectMetadata: (projectName: string) => void;
|
||||
participantAnonymous: boolean;
|
||||
finishedGame: boolean;
|
||||
revealablesFinished: number;
|
||||
showScore: boolean;
|
||||
}
|
||||
|
||||
const store = create<State>(
|
||||
devtools((set) => ({
|
||||
showScore: false,
|
||||
currentIntroStep: 0,
|
||||
revealablesFinished: 0,
|
||||
currentScene: Scenes.OVERVIEW,
|
||||
currentSubproject: null,
|
||||
participantAnonymous: false,
|
||||
|
|
|
|||
Reference in a new issue