mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
9 lines
157 B
C#
9 lines
157 B
C#
namespace Content.Server.Sandbox
|
|
{
|
|
public interface ISandboxManager
|
|
{
|
|
bool IsSandboxEnabled { get; set; }
|
|
void Initialize();
|
|
}
|
|
}
|