Architecture implemented.

This commit is contained in:
Mal
2020-01-23 23:09:03 +01:00
parent fb762d1778
commit 388799c97e
5 changed files with 158 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
import GeometryRect from "../geometry/GeometryRect.js";
export default class RetroArchitectureTile
{
constructor(tile, x, y, width, height) {
this.tile = tile;
this.rect = new GeometryRect(x, y, width, height);
}
}