var Last_Window_BaseCreateContents = Window_Base.prototype.createContents;
Window_Base.prototype.createContents = function() {
Last_Window_BaseCreateContents.call(this);
this.contents.clear = this.clear.bind(this);
};
Window_Base.prototype.clear = function() {
this.contents.clearRect(0, 0, this.contents.width, this.contents.height);
this.清除精灵();
};
var Last_Window_BaseCreateContents = Window_Base.prototype.createContents;
Window_Base.prototype.createContents = function() {
Last_Window_BaseCreateContents.call(this);
this.contents.clear = this.clear.bind(this);
};
Window_Base.prototype.clear = function() {
this.contents.clearRect(0, 0, this.contents.width, this.contents.height);
this.清除精灵();
};