6
StarHorizon_Public/Content.Shared/Mind/Components/TransferMindOnGibComponent.cs
2026-01-18 12:53:36 +03:00

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