pleins de trucs

This commit is contained in:
Deadzi06
2026-07-10 06:10:33 +02:00
commit a55abbc5f7
51 changed files with 2235 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
---@class Squeak : Event
local Squeak, super = Class(Event)
function Squeak:init(x, y, shape)
super.init(self, x, y, shape)
end
function Squeak:onInteract(player, dir)
Assets.playSound("squeak")
return true
end
return Squeak