(function() {

var NarrationWindow = defineObject(BaseWindow,
{
_text: '',

drawWindowContent: function(x, y) {
var textui = this.getWindowTextUI();
var font = textui.getFont();
var color = textui.getColor();
TextRenderer.drawText(x, y - 8, this._text, -1, color, font);
},

getWindowWidth: function() {
return 320;
},

getWindowHeight: function() {
return 30;
},

setText: function(text) {
this._text = text;
}
}
);