mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
12 lines
208 B
C#
12 lines
208 B
C#
using System;
|
|
|
|
namespace Content.Client.Sandbox
|
|
{
|
|
public interface ISandboxManager
|
|
{
|
|
void Initialize();
|
|
bool SandboxAllowed { get; }
|
|
event Action<bool> AllowedChanged;
|
|
}
|
|
}
|