using Robust.Shared.Prototypes;
namespace Content.Shared.Mind;
/// <summary>
/// The core properties of Role Types
/// </summary>
[Prototype, Serializable]
public sealed partial class RoleTypePrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = default!;
/// The role's name as displayed on the UI.
[DataField]
public LocId Name = "role-type-crew-aligned-name";
/// The role's displayed color.
public Color Color { get; private set; } = Color.FromHex("#eeeeee");
}