24 lines
590 B
C#
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;
|
|
}
|