some shit

This commit is contained in:
2024-05-31 13:19:42 +03:00
parent a71461dac0
commit ea0681b60d
9 changed files with 779 additions and 12 deletions

View File

@@ -26,6 +26,8 @@ gfx.setFont(font)
-- Libraries
import "lib/AnimatedSprite"
import "lib/pdParticles"
playdate.display.setRefreshRate(50)
-- Game
@@ -40,6 +42,7 @@ local function initialize()
-- Init all the things!
level = Level()
playdate.resetElapsedTime()
end
initialize()
@@ -48,6 +51,7 @@ function pd.update()
gfx.sprite.update()
pd.timer.updateTimers()
pd.drawFPS(10,0)
Particles:update()
if level then
level.update()