OMA-COMMAND — Missile Command arcade clone in Love2D with Omarchy theme integration. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
295 B
Lua
11 lines
295 B
Lua
function love.conf(t)
|
|
t.window.title = "OMA-COMMAND"
|
|
t.window.width = 1024
|
|
t.window.height = 924
|
|
t.window.resizable = true
|
|
t.window.vsync = 1
|
|
t.window.fullscreen = false
|
|
t.window.fullscreentype = "desktop"
|
|
t.window.minwidth = 512
|
|
t.window.minheight = 462
|
|
end
|