feat: add load function to main.lua for initialization

This commit is contained in:
usysrc 2025-01-21 14:22:41 -03:00
parent 2de9cf2015
commit 0e7c0d615e

View File

@ -8,7 +8,6 @@ lick.clearPackages = true
local divider = require "divider"
-- A couple of shortcuts
local lg = love.graphics
local sin, cos, pi = math.sin, math.cos, math.pi
@ -40,3 +39,7 @@ function love.draw(dt)
divider.draw()
love.graphics.print(time)
end
function load()
print("hi")
end