Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_AnalyticsTimer.c
Go to the documentation of this file.
2{
4
5 //------------------------------------------------------------------------------------------------
7 void Start()
8 {
9 m_StartSeconds = GetGame().GetWorld().GetTimestamp();
10 }
11
12 //------------------------------------------------------------------------------------------------
16 {
17 if (!m_StartSeconds)
18 {
19 Debug.Error("Can't save timer %1 because it was not yet started!");
20 return -1;
21 }
22
23 return GetGame().GetWorld().GetTimestamp().DiffSeconds(m_StartSeconds);
24 }
25}
ArmaReforgerScripted GetGame()
Definition game.c:1398
Definition Debug.c:13
WorldTimestamp m_StartSeconds
void Start()
Start tracking time which clears previous start time.