Going back to the canvas thing

This commit is contained in:
Lani Aung
2021-12-12 13:49:19 -07:00
parent 720b387dd3
commit 262bce4549
20 changed files with 3623 additions and 537 deletions
+6 -5
View File
@@ -7,13 +7,14 @@ export interface Playset {
}
export interface Cel {
readonly id: number
readonly mark: number
readonly fix: number
readonly initialPositions: Coordinate[]
readonly initialPositions: { [key: number]: Coordinate }
readonly offset: Coordinate
currentPositions: Coordinate[]
currentFix: number
readonly image: string
readonly zIndex: number
readonly height: number
readonly width: number
}
export class Coordinate {