2015-03-11 20:11:29 -04:00
|
|
|
function love.conf(t)
|
2026-08-07 20:56:42 -04:00
|
|
|
-- This project uses the normalized-color and ImageData APIs introduced in
|
|
|
|
|
-- LÖVE 11. Pinning the intended runtime also gives a useful warning when a
|
|
|
|
|
-- player tries to launch it with an older installation.
|
|
|
|
|
t.version = "11.5"
|
2015-03-17 02:15:28 -04:00
|
|
|
t.window.width = 900
|
|
|
|
|
t.window.height = 640
|
2015-03-11 20:11:29 -04:00
|
|
|
t.window.title = "CHROMA SOLSTICE"
|
2026-08-07 10:27:56 -04:00
|
|
|
t.window.resizable = true
|
|
|
|
|
t.window.minwidth = 700
|
|
|
|
|
t.window.minheight = 500
|
2026-08-07 20:56:42 -04:00
|
|
|
end
|