jsrogue
jsrogue copied to clipboard
Extend function is not working
For those who have problem with extend function: it seems to be missing in current version of ROT.js. You should add this to the top of Game.js file:
Object.prototype.extend = function(a) { this.prototype=Object.create(a.prototype); this.prototype.constructor = this; return this; };