Files
OldThink/Content.Shared/_White/Cult/Components/ConstructShellComponent.cs
2024-01-29 01:02:37 +07:00

18 lines
598 B
C#

using Content.Shared.Containers.ItemSlots;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
namespace Content.Shared._White.Cult.Components;
[RegisterComponent]
public sealed partial class ConstructShellComponent : Component
{
[DataField("shardSlot", required: true)]
public ItemSlot ShardSlot = new();
public readonly string ShardSlotId = "Shard";
[DataField("constructForms", customTypeSerializer: typeof(PrototypeIdListSerializer<EntityPrototype>))]
public List<string> ConstructForms = new();
}