fix: 🐛 initialize time variable to 0 in main.lua

This commit is contained in:
usysrc 2024-12-08 21:51:17 +01:00
parent 4a1fbf7358
commit 8ac9aac6ad

View File

@ -1,6 +1,6 @@
--
-- This is an example how to use lick
--
--
local lick = require "lick"
lick.updateAllFiles = true
@ -14,7 +14,7 @@ local lg = love.graphics
local sin, cos, pi = math.sin, math.cos, math.pi
-- The main love callbacks
local time = time or 0
local time = 0
function love.load()
time = 0
end