Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Block.prototype.draw = function(reset, more)
- {
- if (typeof reset === 'undefined' || reset)
- {
- if ( typeof more === "function" )
- {
- more.apply(this);
- }
- if ( typeof reset === "function" )
- {
- reset.apply(this);
- }
- else
- {
- this._reset();
- }
- }
- this._draw();
- };
Advertisement
Add Comment
Please, Sign In to add comment