Extremely simple timer
local Timer = require("shard.timer")
Creates new timer with duration and callback function
Updates timer based on delta time
local Timer = require("shard/timer")
function timerCallback()
print("tick")
end
local timer
function love.load()
timer = Timer(2.25, timerCallback)
end
function love.update(dt)
timer:update(dt)
end