Files
OldThink/Content.Shared/Lathe/EmagLatheComponent.cs

24 lines
878 B
C#
Raw Permalink Normal View History

2023-08-07 17:21:04 +03:00
using Content.Shared.Research.Prototypes;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
2023-08-07 17:21:04 +03:00
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
namespace Content.Shared.Lathe
{
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
2023-08-07 17:21:04 +03:00
public sealed partial class EmagLatheRecipesComponent : Component
{
/// <summary>
/// All of the dynamic recipes that the lathe is capable to get using EMAG
/// </summary>
[DataField, AutoNetworkedField]
public List<ProtoId<LatheRecipePrototype>> EmagDynamicRecipes = new();
2023-08-07 17:21:04 +03:00
/// <summary>
/// All of the static recipes that the lathe is capable to get using EMAG
/// </summary>
[DataField, AutoNetworkedField]
public List<ProtoId<LatheRecipePrototype>> EmagStaticRecipes = new();
2023-08-07 17:21:04 +03:00
}
}