Files
OldThink/Content.Server/Sandbox/ISandboxManager.cs

9 lines
157 B
C#
Raw Normal View History

2019-10-02 10:45:06 +02:00
namespace Content.Server.Sandbox
{
public interface ISandboxManager
{
bool IsSandboxEnabled { get; set; }
void Initialize();
}
}