Files
crystall-punk-14/Content.Shared/_CP14/ModularCraft/Components/CP14ModularAutoAssembleComponent.cs

15 lines
550 B
C#
Raw Normal View History

using Content.Shared._CP14.ModularCraft.Prototypes;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.ModularCraft.Components;
/// <summary>
/// Adds all details to the item when initializing. This is useful for spawning modular items directly when mapping or as loot in demiplanes.
/// </summary>
[RegisterComponent, Access(typeof(CP14SharedModularCraftSystem))]
public sealed partial class CP14ModularCraftAutoAssembleComponent : Component
{
[DataField]
public List<ProtoId<CP14ModularCraftPartPrototype>> Details = new();
}