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