Re-organize all projects (#4166)
This commit is contained in:
15
Content.Server/Module/ServerModuleManager.cs
Normal file
15
Content.Server/Module/ServerModuleManager.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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 class ServerModuleManager : IModuleManager
|
||||
{
|
||||
bool IModuleManager.IsClientModule => false;
|
||||
bool IModuleManager.IsServerModule => true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user