This commit is contained in:
Paul Liverman
2015-02-06 22:48:33 -08:00
commit 5e86090bf1
14 changed files with 424 additions and 0 deletions

16
src/conf.lua Normal file
View File

@@ -0,0 +1,16 @@
function love.conf(t)
t.identity = "RGB"
t.version = "0.9.1"
--t.author = "Guard13007"
t.console = true
t.window = {}
t.window.title = "RGB - The Color Chooser"
t.window.width = 800
t.window.height = 460
t.window.borderless = true
--t.modules = {}
t.modules.joystick = false
t.modules.physics = false
end