summaryrefslogtreecommitdiff
path: root/spike.lua
diff options
context:
space:
mode:
authorcursed22bc <admin@pixeldawn.org>2026-03-10 19:27:58 +0200
committercursed22bc <admin@pixeldawn.org>2026-03-10 19:27:58 +0200
commit9d95968c3e732be915f10841d1d659e37b3b5d03 (patch)
tree1932c4fef554a350303c75cda830503efdaa144c /spike.lua
parentdb9454cb632a3ba0b39018513b0d5bd444c8ffd3 (diff)
collision death state and basic HUD
Diffstat (limited to 'spike.lua')
-rw-r--r--spike.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/spike.lua b/spike.lua
index f6e72b5..c6a2831 100644
--- a/spike.lua
+++ b/spike.lua
@@ -5,6 +5,7 @@ setmetatable(Spike, { __index = Entity })
function Spike.new(entity)
local self = setmetatable(Entity:new(entity.x, entity.y, entity.width, entity.height), Spike)
+ self.isSpike = true
return self
end