conf.lua 174 B

123456789
  1. function love.conf(t)
  2. t.title = 'Muju Juju'
  3. t.console = false
  4. t.window.width = 800
  5. t.window.height = 600
  6. if arg[2] ~= 'local' then
  7. t.window.fullscreen = true
  8. end
  9. end