implement players section

This commit is contained in:
zznty
2022-10-04 20:25:14 +07:00
parent fd2c272148
commit 5fa6cc52bb
4 changed files with 78 additions and 1 deletions

View File

@@ -21,6 +21,8 @@ internal static class Statics
public static InstanceManager InstanceManager => Torch.Managers.GetManager<InstanceManager>();
public static PluginManager PluginManager => Torch.Managers.GetManager<PluginManager>();
public static CommandManager? CommandManager => Torch.CurrentSession?.Managers.GetManager<CommandManager>();
public static MultiplayerManagerDedicated? MultiplayerManager =>
Torch.CurrentSession?.Managers.GetManager<MultiplayerManagerDedicated>();
public static ChatModule ChatModule = null!;
}