/*:
* @plugindesc FaceWindow
* @author JohanesGroon
* @help
*/
(function(){
var _Scene_Map_start = Scene_Map.prototype.start;
Scene_Map.prototype.start = function() {
_Scene_Map_start.call(this);
this._createfacewindow = new Face_Window(544, 417);
this.addChild(this._createfacewindow);
};
function Face_Window() {
this.initialize.apply(this, arguments);
}
Face_Window.prototype = Object.create(Window_Base.prototype);
Face_Window.prototype.constructor = Face_Window;
Face_Window.prototype.initialize = function(x, y) {
Window_Base.prototype.initialize.call(this, x, y, 252,187);
this.drawFace("Actor1", 1, 0, 0, 144, 144);
};
})();