using Robust.Shared.GameStates; namespace Content.Shared.Forensics.Components; /// /// This component is for mobs that have DNA. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class DnaComponent : Component { [DataField("dna"), AutoNetworkedField] public string? DNA; }