using Content.Shared._NF.Research.Prototypes;
using Robust.Shared.Prototypes;
namespace Content.Client._NF.Lathe;
///
/// A given client's state for a blueprint-printing lathe.
///
[RegisterComponent]
public sealed partial class BlueprintLatheClientStateComponent : Component
{
///
/// The last selected blueprint type.
///
[DataField]
public ProtoId? CurrentBlueprintType;
///
/// The last set of selected recipes.
///
[DataField]
public int[]? CurrentRecipes;
}