Files
tbd-station-14/Content.Server/Module/ServerModuleManager.cs
2022-02-16 18:23:23 +11:00

16 lines
441 B
C#

using Content.Shared.Module;
namespace Content.Server.Module
{
/// <summary>
/// Server implementation of IModuleManager.
/// Provides simple way for shared code to check if it's being run by
/// the client of the server.
/// </summary>
public sealed class ServerModuleManager : IModuleManager
{
bool IModuleManager.IsClientModule => false;
bool IModuleManager.IsServerModule => true;
}
}