using Content.Shared.Preferences; using Robust.Shared.Prototypes; namespace Content.Shared.Humanoid.Prototypes; [Prototype] public sealed partial class HumanoidProfilePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; [DataField("customBaseLayers")] public Dictionary CustomBaseLayers = new(); [DataField("profile")] public HumanoidCharacterProfile Profile { get; private set; } = new(); }