Keyboard shortcuts

This commit is contained in:
2023-07-28 10:59:22 +02:00
parent b77768475d
commit 4aa85765b4
5 changed files with 88 additions and 22 deletions

View File

@ -1,3 +1,5 @@
import { tutorial_universe } from "./universes/tutorial"
export type Universes = { [key: string]: Universe }
export interface Universe {
@ -50,7 +52,8 @@ export const template_universes = {
9: { candidate: "", committed: "", evaluations: 0},
},
init: { candidate: "", committed: "", evaluations: 0 }
}
},
"Help": tutorial_universe,
}