blob: 032f41b0ec7804f18024eb5c768771d8a66b0759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
-- Game configuration
function love.conf(t)
t.title = "Roflnauts 2"
t.version = "0.10.2"
t.window.width = 320
t.window.height = 180
-- t.window.borderless = true
t.identity = "not-nautz"
-- t.window.fullscreentype = "desktop"
-- t.window.fullscreen = true
t.console = false
end
|