1
Fork 0
mirror of https://github.com/Cookie-CHR/OfficeMadness-LD51.git synced 2025-02-16 13:33:58 +00:00
office-madness/Scripts/TimePassed.gd
Cookie-CHR 386b3a53c2 ⚙️ Forgot one
2022-10-03 01:32:00 +02:00

12 lines
185 B
GDScript

extends Timer
var seconds_passed
# Called when the node enters the scene tree for the first time.
func _ready():
seconds_passed = 0
func _on_Timer_timeout():
seconds_passed += 1