1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-21 15:44:23 +00:00

Swap Counter.changed arguments

This commit is contained in:
Steffo 2024-04-24 04:43:27 +02:00
parent 93c3e734f1
commit a3a5503c17
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -5,7 +5,7 @@ class_name Counter
## Counts up or down from a starting value.
signal changed(old: int, new: int)
signal changed(new: int, old: int)
@export var starting_value: int