Files
tbd-station-14/Content.Client/Sandbox/ISandboxManager.cs
2020-02-08 20:45:02 +01:00

12 lines
208 B
C#

using System;
namespace Content.Client.Sandbox
{
public interface ISandboxManager
{
void Initialize();
bool SandboxAllowed { get; }
event Action<bool> AllowedChanged;
}
}