afk manager

This commit is contained in:
Nordup 2025-08-17 16:47:53 +07:00
parent 9598ec94f0
commit 99d7c51b5f
7 changed files with 112 additions and 5 deletions

View file

@ -100,3 +100,15 @@ func onboarding_finished(time_spend: float) -> Dictionary:
var event = base("onboarding_finished")
event.time_spend = time_spend
return event
# AFK
func enter_afk() -> Dictionary:
return base("enter_afk")
func leave_afk(time_spend: float) -> Dictionary:
var event = base("leave_afk")
event.time_spend = time_spend
return event