aboutsummaryrefslogtreecommitdiff
path: root/conf.lua
blob: fea441b00fd0a2e9aece105ba95293f9a210ccb8 (plain)
1
2
3
4
5
6
7
8
9
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"
    t.console = true
end