mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-22 07:44:17 +00:00
13 lines
203 B
GDScript
13 lines
203 B
GDScript
extends Node
|
|
class_name Valuable
|
|
|
|
@export var value: int
|
|
|
|
## Emitted when this entity has been counted.
|
|
signal evaluated
|
|
|
|
## Mark this entity as evaluated.
|
|
##
|
|
func evaluate():
|
|
emit_signal("evaluated")
|
|
|