Added Map; Added Spawners; Changed Decorations; Cleaned up Code and some Settings; Added Enemy

This commit is contained in:
Exobyt 2024-09-14 19:34:17 +02:00
parent e82438139f
commit e18beb6c4c
160 changed files with 4674 additions and 182 deletions

View file

@ -0,0 +1,7 @@
extends Area2D
signal hit(entity: int)
func attack(damage):
for i in get_overlapping_areas():
i.hit(damage)