summaryrefslogtreecommitdiffhomepage
path: root/conf.lua
blob: 4d366e15e047f067bb1340a66ac3a7706eef550a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function love.conf (t)
	t.title = "Roflnauts 2"
	t.version = "11.0"
	t.window.width = 320
	t.window.height = 180
	t.identity = "not-nautz"
	t.console = false
	t.releases = {
		title = t.title,
		identifier = t.identity,
		package = "roflnauts",
		author = "The Roflnauts 2 Team",
		email = "nthirtyone@gmail.com",
		description = "Fan made sequel to Roflnauts.",
		homepage = "https://github.com/nthirtyone/roflnauts"
	}
end