Files
fxl.codes.kisekae/Scripts/pto.ts
T
2021-10-10 17:15:45 -06:00

21 lines
316 B
TypeScript

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
}