2020-02-08 20:45:02 +01:00
|
|
|
using System;
|
|
|
|
|
|
2019-10-02 10:45:06 +02:00
|
|
|
namespace Content.Client.Sandbox
|
|
|
|
|
{
|
|
|
|
|
public interface ISandboxManager
|
|
|
|
|
{
|
|
|
|
|
void Initialize();
|
2020-02-08 20:45:02 +01:00
|
|
|
bool SandboxAllowed { get; }
|
|
|
|
|
event Action<bool> AllowedChanged;
|
2019-10-02 10:45:06 +02:00
|
|
|
}
|
|
|
|
|
}
|