summaryrefslogtreecommitdiff
path: root/src/window.moon
blob: ddd56b216a31a1fca2789d93d5f98de61539d034 (plain)
1
2
3
4
5
6
7
8
9
10
11
color = require("color")
-- Special file to hold the window, no dependencies!
win = am.window{
	title: "Night Fishing"
	width: 1280
	height: 720
	clear_color: color.am_color.background
	--depth_buffer: true
}
win.scene = am.group!
win