Files
crystall-punk-14/Content.Client/Sandbox/ISandboxManager.cs

12 lines
208 B
C#
Raw Normal View History

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