Delta-v/Content.Server/Sandbox/ISandboxManager.cs

9 lines
157 B
C#

namespace Content.Server.Sandbox
{
public interface ISandboxManager
{
bool IsSandboxEnabled { get; set; }
void Initialize();
}
}