bytepath/main.lua
2025-11-07 22:54:10 -03:00

22 lines
361 B
Lua

-- debug --
if os.getenv("LOCAL_LUA_DEBUGGER_VSCODE") == "1" then
require("lldebugger").start()
end
-- libraries --
Object = require 'lib/classic/classic'
-- objects --
Circle = require 'obj/Circle'
function love.load()
circle = Circle(400, 300, 50)
end
function love.update(dt)
circle:update(dt)
end
function love.draw()
circle:draw()
end