Files
RobustToolbox/Robust.Shared/Console/ConGroup.cs
Pieter-Jan Briers 400dcb06fc Server scripting.
2020-04-30 00:06:59 +02:00

19 lines
482 B
C#

using System.Collections.Generic;
namespace Robust.Shared.Console
{
internal class ConGroup
{
public int Index { get; set; }
public string Name { get; set; }
public List<string> Commands { get; set; }
// NOTE: When adding special permissions, do NOT forget to add it to MsgConGroupUpdate!!
public bool CanViewVar { get; set; }
public bool CanAdminPlace { get; set; }
public bool CanScript { get; set; }
}
}