You can no longer place unless you are in admin or sandbox.

This commit is contained in:
Pieter-Jan Briers
2020-02-08 20:45:02 +01:00
parent 6b93549ff6
commit eb7c80ba7a
5 changed files with 76 additions and 7 deletions

View File

@@ -1,7 +1,11 @@
using System;
namespace Content.Client.Sandbox
{
public interface ISandboxManager
{
void Initialize();
bool SandboxAllowed { get; }
event Action<bool> AllowedChanged;
}
}