Adding a new MarkDown note buffer for each universe

This commit is contained in:
2023-08-03 18:38:48 +02:00
parent bd76893282
commit 4c239c12f1
8 changed files with 135 additions and 162 deletions

View File

@ -6,12 +6,13 @@ export interface Universe {
global: File
locals: { [key: number]: File }
init: File
notes: File
}
export interface File {
candidate: string
committed: string
evaluations: number
committed?: string
evaluations?: number
}
export interface Settings {
@ -36,7 +37,8 @@ export const template_universe = {
8: { candidate: "", committed: "", evaluations: 0},
9: { candidate: "", committed: "", evaluations: 0},
},
init: { candidate: "", committed: "", evaluations: 0 }
init: { candidate: "", committed: "", evaluations: 0 },
notes: { candidate: "" },
}
export const template_universes = {
@ -53,7 +55,8 @@ export const template_universes = {
8: { candidate: "", committed: "", evaluations: 0},
9: { candidate: "", committed: "", evaluations: 0},
},
init: { candidate: "", committed: "", evaluations: 0 }
init: { candidate: "", committed: "", evaluations: 0 },
notes: { candidate: "// NOTES" },
},
"Help": tutorial_universe,
}