21
Content.Shared/Lathe/Prototypes/LatheCategoryPrototype.cs
Normal file
21
Content.Shared/Lathe/Prototypes/LatheCategoryPrototype.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Content.Shared.Research.Prototypes;
|
||||
using Robust.Shared.Prototypes;
|
||||
|
||||
namespace Content.Shared.Lathe.Prototypes;
|
||||
|
||||
/// <summary>
|
||||
/// This is a prototype for a category for <see cref="LatheRecipePrototype"/>
|
||||
/// </summary>
|
||||
[Prototype]
|
||||
public sealed partial class LatheCategoryPrototype : IPrototype
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
[IdDataField]
|
||||
public string ID { get; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// A localized string used in the UI
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public LocId Name;
|
||||
}
|
||||
Reference in New Issue
Block a user