module DrawWindow
def draw_window()
$window = Window_Base.new(0,296, Graphics.width, 120)
bitmap = Bitmap.new("Graphics/Pictures/Face.png")
$window.contents.blt(0,0, bitmap, Rect.new(0,0,bitmap.width,bitmap.height))
end
def draw_message(string)
$window.draw_text(112,14, Graphics.width, 50, $txt,0)
end
def clear_window()
$window.dispose
end
end