blob: 14f258625fb5e29dd4c61ecc16025ad089a234b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
'use strict';
interface Input {
tiles: {[key: string]: {file: string}};
collision: string[];
layers: string[][][];
}
export default class MapData {
tiles: {[key: string]: {file: string}};
collision: string[];
layers: string[][][];
width: number;
height: number;
constructor(data: Input) {
this.tiles = data.tiles;
this.collision = data.collision;
this.layers = data.layers;
this.height = this.collision.length;
this.width = this.collision[0].length;
}
}
|