Files
tbd-station-14/Content.Shared/Nutrition/Flavor.cs

23 lines
482 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared.Nutrition;
[Prototype("flavor")]
public sealed 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
}