| 1234567891011121314151617 |
- 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<HumanoidVisualLayers, CustomBaseLayerInfo> CustomBaseLayers = new();
- [DataField("profile")]
- public HumanoidCharacterProfile Profile { get; private set; } = new();
- }
|