summaryrefslogtreecommitdiffhomepage
path: root/conf.lua
blob: e34d170c9a61c6511150e9f1881866cc797791ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Game configuration
function love.conf(t)
	t.title = "Roflnauts 2"
	t.version = "0.10.1"
	--[[
	t.window.width = 320*3
	t.window.height = 180*3
	t.window.borderless = true
	--]]
	t.window.fullscreentype = "desktop"
	t.window.fullscreen = true
	t.console = false
end