Add sheet viewer page

This commit is contained in:
dylan
2023-05-06 14:49:46 -07:00
parent 0adfdabffa
commit 471fa9e0b6
11 changed files with 269 additions and 56 deletions

View File

@ -8,6 +8,9 @@ export type Sheet = {
} | {
sheet_type: "spritesheet",
value: Array<Array<number>>,
} | {
sheet_type: "none",
value: null,
}
export type SheetType = Sheet["sheet_type"];