2025-02-09 23:36:01 -04:00
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Forensics.Components;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// This component is for mobs that have DNA.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
|
|
|
|
public sealed partial class DnaComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataField("dna"), AutoNetworkedField]
|
2025-03-02 16:50:12 +01:00
|
|
|
|
public string? DNA;
|
2025-02-09 23:36:01 -04:00
|
|
|
|
}
|