mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2025-12-13 11:38:15 +07:00
11 lines
228 B
Lua
11 lines
228 B
Lua
if os.getenv('LOCAL_LUA_DEBUGGER_VSCODE') == '1' then
|
|
require('lldebugger').start()
|
|
end
|
|
|
|
---@type love.conf
|
|
function love.conf(t)
|
|
t.window.title = 'Evolved Example'
|
|
t.window.width = 640
|
|
t.window.height = 480
|
|
end
|