1
0

DnaComponent.cs 351 B

12345678910111213
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Forensics.Components;
  3. /// <summary>
  4. /// This component is for mobs that have DNA.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
  7. public sealed partial class DnaComponent : Component
  8. {
  9. [DataField("dna"), AutoNetworkedField]
  10. public string? DNA;
  11. }