Lathe Categories (#24247)

* Lathe Categories

* serilog my beloathed
This commit is contained in:
Nemanja
2024-01-19 19:45:03 -05:00
committed by GitHub
parent 7583662672
commit 73e94dfa92
19 changed files with 472 additions and 32 deletions

View 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;
}