1
0

TransferMindOnGibComponent.cs 396 B

1234567891011
  1. using Content.Shared.Tag;
  2. using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
  3. namespace Content.Shared.Mind.Components;
  4. [RegisterComponent]
  5. public sealed partial class TransferMindOnGibComponent : Component
  6. {
  7. [DataField("targetTag", customTypeSerializer: typeof(PrototypeIdSerializer<TagPrototype>))]
  8. public string TargetTag = "MindTransferTarget";
  9. }