Files
tbd-station-14/Content.Server/Mind/Components/TransferMindOnGibComponent.cs
2022-10-15 15:06:01 -07:00

12 lines
388 B
C#

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