oma-command/conf.lua
nosignal 64ce7f0fcb Initial public release
OMA-COMMAND — Missile Command arcade clone in Love2D with Omarchy theme integration.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-15 18:32:07 +01:00

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