a game about throwing hammers made for the github game off
Diffstat (limited to 'colliders/hurtbox.gd')
| -rw-r--r-- | colliders/hurtbox.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/colliders/hurtbox.gd b/colliders/hurtbox.gd index df92234..f4872c0 100644 --- a/colliders/hurtbox.gd +++ b/colliders/hurtbox.gd @@ -1,5 +1,6 @@ extends Area2D class_name Hurtbox + func _ready() -> void: - assert(owner is Hittable)
\ No newline at end of file + assert(owner is Hittable) |