HorseSeaHorse/conf.lua

8 lines
149 B
Lua
Raw Normal View History

2021-02-05 20:58:58 -06:00
function love.conf(t)
t.window.resizable = true
t.window.title = "HorseHorse"
t.window.vsync = 0
2021-02-07 13:27:36 -06:00
t.window.width = 800
t.window.height = 800
2021-02-05 20:58:58 -06:00
end