Initial Commit

This commit is contained in:
Patrick Schwarzer 2025-04-11 18:13:24 +02:00
commit 41f6c65a46
7 changed files with 141 additions and 0 deletions

14
games/test.lua Normal file
View file

@ -0,0 +1,14 @@
local test = 1
local delay = 0
function Update(dt, curTime)
if (curTime > delay) then
delay = curTime + 1
test = test + 1
end
end
function Draw()
print("Counter: " .. test, 10, 10)
end