js-browser-tile-game/js/tile.js
Aaron Yarborough 4b4e124c57 Initial commit
2019-12-02 10:05:48 +00:00

25 lines
No EOL
353 B
JavaScript

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);
}