17 lines
400 B
C#
17 lines
400 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Metabolism;
|
|
|
|
[Prototype]
|
|
public sealed partial class MetabolizerTypePrototype : IPrototype
|
|
{
|
|
[IdDataField]
|
|
public string ID { get; private set; } = default!;
|
|
|
|
[DataField("name", required: true)]
|
|
private LocId Name { get; set; }
|
|
|
|
[ViewVariables(VVAccess.ReadOnly)]
|
|
public string LocalizedName => Loc.GetString(Name);
|
|
}
|