game/src/conf.lua

9 lines
153 B
Lua
Raw Permalink Normal View History

2018-12-04 15:50:59 +00:00
local conf = {}
function love.conf(t)
t.window.title = "AAAA"
t.window.width = 256*2.5
t.window.height = 240*2.5
conf.properties = t
end
return conf