fish-station/Content.Server/Mind/Components/TransferMindOnGibComponent.cs
Nemanja 9363674bd5
Bad 2 Da Bone [Skeleton Tweaks] (#11669)
Co-authored-by: Kara <lunarautomaton6@gmail.com>
2022-10-15 15:06:01 -07:00

11 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";
}