22 lines
361 B
Lua
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
|