Lua function to clear the time logger.
◆ Implementation()
| void RoomService.ClearLogger.Implementation |
( |
| ) |
|
|
inlineprivate |
Usage:
Lua function to clear the time logger.
Definition RoomServiceLuaFunctions.cs:859
Definition MyPluginInfo.cs:2
Source Code
874 {
875 if (!RoomServiceUtils.IsOnlineHost())
876 {
877 return;
878 }
879
880 Plugin.Instance.levelInfo.Clear();
881 Plugin.Instance.playerTimes.Clear();
882 }