jsrogue icon indicating copy to clipboard operation
jsrogue copied to clipboard

Extend function is not working

Open r34117y opened this issue 5 years ago • 0 comments

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

r34117y avatar Mar 21 '20 18:03 r34117y