HumanoidProfilePrototype.cs 500 B

1234567891011121314151617
  1. using Content.Shared.Preferences;
  2. using Robust.Shared.Prototypes;
  3. namespace Content.Shared.Humanoid.Prototypes;
  4. [Prototype]
  5. public sealed partial class HumanoidProfilePrototype : IPrototype
  6. {
  7. [IdDataField]
  8. public string ID { get; private set; } = default!;
  9. [DataField("customBaseLayers")]
  10. public Dictionary<HumanoidVisualLayers, CustomBaseLayerInfo> CustomBaseLayers = new();
  11. [DataField("profile")]
  12. public HumanoidCharacterProfile Profile { get; private set; } = new();
  13. }