1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2025-02-16 17:13:58 +00:00
hella-farm/behaviours/edible.gd

14 lines
131 B
GDScript3
Raw Permalink Normal View History

extends Node
class_name Edible
2024-04-15 01:23:06 +02:00
signal eaten
func eat():
eaten.emit()
get_parent().queue_free()
2024-04-14 00:23:33 +02:00
@export var tag: StringName