using Robust.Shared.Prototypes;
namespace Content.Shared.Mind;
///
/// The core properties of Role Types
///
[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.
///
[DataField]
public Color Color { get; private set; } = Color.FromHex("#eeeeee");
}