diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/model/data/map.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/model/data/map.ts b/src/model/data/map.ts index 50b9175..d6fd835 100644 --- a/src/model/data/map.ts +++ b/src/model/data/map.ts @@ -1,12 +1,10 @@ export interface Input { readonly tiles: string[]; - readonly collision: boolean[][]; readonly layers: number[][][]; } export class MapData { public readonly tiles: string[]; - public readonly collision: boolean[][]; public readonly layers: number[][][]; public readonly width: number; @@ -14,10 +12,9 @@ export class MapData { 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; + this.height = this.layers[0].length; + this.width = this.layers[0][0].length; } } |