added detonation particles after collectibles have been collected

This commit is contained in:
2024-02-08 18:33:59 +01:00
parent d17594dc38
commit 006216398a
9 changed files with 122 additions and 17 deletions

View File

@@ -16,3 +16,8 @@ type Solid struct{}
type Floor struct{}
type Player struct{}
type Collectible struct{}
type Particle struct {
Index int
Particles []*ebiten.Image
}