aboutsummaryrefslogtreecommitdiff
path: root/src/models/FrameChunk.ts
blob: f05fd88451781110d5381d6d2c00a688c277383d (plain)
1
2
3
4
5
6
7
8
9
10
export class FrameChunk {
    constructor(
      readonly xStart: number,
      readonly yStart: number,
      readonly width: number,
      readonly height: number
    ) {

    }
}