6
StarHorizon_Public/Content.Client/_NF/Lathe/BlueprintLatheClientStateComponent.cs
2025-08-05 10:00:54 +03:00

24 lines
590 B
C#

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