mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-16 14:29:01 -06:00
12 lines
217 B
Lua
12 lines
217 B
Lua
function love.conf(t)
|
|
t.identity = "cambridge"
|
|
|
|
t.console = true
|
|
|
|
t.window.title = "Cambridge"
|
|
t.window.width = 640
|
|
t.window.height = 480
|
|
t.window.icon = "res/img/cambridge_icon.png"
|
|
t.window.vsync = false
|
|
end
|