Add a "give full access" button to the sandbox menu for convienence. (#1387)

Co-authored-by: scuffedjays <yetanotherscuffed@gmail.com>
This commit is contained in:
F77F
2020-07-17 03:38:58 -05:00
committed by GitHub
parent 4d9344c733
commit de013ba2ab
4 changed files with 59 additions and 1 deletions

View File

@@ -47,5 +47,24 @@ namespace Content.Shared.Sandbox
{
}
}
protected sealed class MsgSandboxGiveAccess : NetMessage
{
#region REQUIRED
public const MsgGroups GROUP = MsgGroups.Command;
public const string NAME = nameof(MsgSandboxGiveAccess);
public MsgSandboxGiveAccess(INetChannel channel) : base(NAME, GROUP) { }
#endregion
public override void ReadFromBuffer(NetIncomingMessage buffer)
{
}
public override void WriteToBuffer(NetOutgoingMessage buffer)
{
}
}
}
}