11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
(() => {
|
|
"use strict";
|
|
Scene_Message.prototype.messageWindowRect = function () {
|
|
return new Rectangle(
|
|
0,
|
|
0,
|
|
Graphics.boxWidth,
|
|
this.calcWindowHeight(2, false)
|
|
);
|
|
};
|
|
})();
|