Files
tbd-station-14/Content.Shared/Nutrition/Flavor.cs
Tayrtahn 86aa82f2b6 Cleanup: Remove redundant prototype name specifications (#35793)
* Remove redundant prototype name specifications

* These can stay
2025-03-19 19:30:31 +01:00

23 lines
480 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared.Nutrition;
[Prototype]
public sealed partial class FlavorPrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = default!;
[DataField("flavorType")]
public FlavorType FlavorType { get; private set; } = FlavorType.Base;
[DataField("description")]
public string FlavorDescription { get; private set; } = default!;
}
public enum FlavorType : byte
{
Base,
Complex
}