19 lines
566 B
C#
19 lines
566 B
C#
using Content.Shared.Research.Systems;
|
|
using Content.Shared.Whitelist;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Research.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for a lathe that can utilize <see cref="BlueprintComponent"/>s to gain more recipes.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(BlueprintSystem))]
|
|
public sealed partial class BlueprintReceiverComponent : Component
|
|
{
|
|
[DataField]
|
|
public string ContainerId = "blueprint";
|
|
|
|
[DataField(required: true)]
|
|
public EntityWhitelist Whitelist = new();
|
|
}
|