HumanoidProfileExport.cs 419 B

12345678910111213141516171819
  1. using Content.Shared.Preferences;
  2. namespace Content.Shared.Humanoid;
  3. /// <summary>
  4. /// Holds all of the data for importing / exporting character profiles.
  5. /// </summary>
  6. [DataDefinition]
  7. public sealed partial class HumanoidProfileExport
  8. {
  9. [DataField]
  10. public string ForkId;
  11. [DataField]
  12. public int Version = 1;
  13. [DataField(required: true)]
  14. public HumanoidCharacterProfile Profile = default!;
  15. }