aboutsummaryrefslogtreecommitdiff
path: root/conf.lua
blob: bd191cd69cc65663d11a866019c67ae7421561e5 (plain)
1
2
3
4
5
6
7
8
function love.conf(t)
    t.window.width = 800
    t.window.height = 600
    t.window.fullscreen = true
    t.window.title = "<Your Enemy is in Another Dungeon>"
    t.window.usedpiscale = true
    t.window.icon = "assets/images/icon.png"
end