Getting somewhere

This commit is contained in:
Lani Aung
2021-10-10 17:15:45 -06:00
parent e09f00945b
commit 738b3c6d35
19 changed files with 594 additions and 88 deletions
+20
View File
@@ -0,0 +1,20 @@
export interface IPlayset {
name: string
height: number
width: number
cels: ICel[]
enabledSets: boolean[]
}
export interface ICel {
defaultImage: string
initialPositions: Coordinate[]
offset: Coordinate
sets: boolean[]
}
export class Coordinate {
x: number
y: number
}