Files
tbd-station-14/Content.Server/Sandbox/ISandboxManager.cs
Pieter-Jan Briers a2d8fc1ef9 Sandbox panel
2019-10-02 21:47:32 +02:00

9 lines
157 B
C#

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