12 lines
396 B
C#
12 lines
396 B
C#
using Content.Shared.Tag;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Shared.Mind.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class TransferMindOnGibComponent : Component
|
|
{
|
|
[DataField("targetTag", customTypeSerializer: typeof(PrototypeIdSerializer<TagPrototype>))]
|
|
public string TargetTag = "MindTransferTarget";
|
|
}
|