2023-03-31 07:49:25 +03:00
|
|
|
|
namespace Content.Server.Forensics;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// This component is for mobs that have DNA.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class DnaComponent : Component
|
2023-03-31 07:49:25 +03:00
|
|
|
|
{
|
|
|
|
|
|
[DataField("dna"), ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
public string DNA = String.Empty;
|
|
|
|
|
|
}
|