RosettaCodeData/Task/Window-creation/Wren/window-creation.wren

17 lines
254 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import "dome" for Window
class EmptyWindow {
construct new(width, height) {
Window.title = "Empty window"
Window.resize(width, height)
}
init() {}
update() {}
draw(alpha) {}
}
var Game = EmptyWindow.new(600, 600)