25 lines
No EOL
353 B
JavaScript
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);
|
|
} |