function Tile(id) { this.id = id; } /* * Gets the tile ID **/ Tile.prototype.setID = function(id) { this.id = id; } /* * Sets the tile ID **/ Tile.prototype.getID = function() { return this.id; } /* * Helper method for determining * if the tile is blocking **/ Tile.prototype.isBlocking = function() { return tileEngine.isBlocking(this.id); }