10 lines
128 B
GDScript
10 lines
128 B
GDScript
extends Node
|
|
|
|
|
|
func _on_timer_timeout():
|
|
queue_free()
|
|
|
|
|
|
func _on_area_2d_body_entered(body):
|
|
pass # TODO: deal damage to body
|