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;
|
|
}
|
|
}
|