Update GameTickWatcher.cs

This commit is contained in:
ALEXTANG
2022-07-19 17:22:58 +08:00
parent a5c17576be
commit 10a2456ece

View File

@@ -26,5 +26,10 @@
long endTick = System.DateTime.Now.Ticks;
return (float)((endTick - m_startTick) / 10000) / 1000.0f;
}
public void LogUsedTime()
{
TLogger.LogException($"Used Time: {this.ElapseTime()}");
}
}
}