show-first/js/plugins/_test_MessageWindow.js
2024-08-08 11:24:10 -05:00

11 lines
210 B
JavaScript

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