summaryrefslogtreecommitdiff
path: root/conf.lua
blob: 628e081a79e993eaaac81f217e58b1af1dbc69ab (plain)
1
2
3
4
5
6
7
8
9
function love.conf(t)
	t.window.title = "the"
	t.window.width=640
	t.window.height=480
	t.window.resizeable=true
	t.window.msaa = 4

end