blob: 0c44d9432652559d2f7ba15917090b67ea8e2ae2 (
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
|
import {mapFromObject} from '../../util';
interface Input {
readonly tiles: string[];
readonly collision: boolean[][];
readonly layers: number[][][];
}
export default class MapData {
public readonly tiles: string[];
public readonly collision: boolean[][];
public readonly layers: number[][][];
public readonly width: number;
public readonly 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;
}
}
|