Files
RGB/src/conf.lua
2016-01-17 20:49:09 -08:00

23 lines
443 B
Lua

local debug = true
function love.conf(t)
t.identity = "rgb"
--t.version = "0.9.1"
--t.author = "Guard13007"
if debug then t.console = true end
t.window = {}
t.window.title = "RGB - The Color Chooser"
t.window.width = 960 --800
t.window.height = 540 --460
t.window.fullscreen = false
t.window.borderless = true
t.window.resizable = false
--t.modules = {}
t.modules.joystick = false
t.modules.physics = false
end
return debug