1
0

Flavor.cs 480 B

12345678910111213141516171819202122
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Nutrition;
  3. [Prototype]
  4. public sealed partial class FlavorPrototype : IPrototype
  5. {
  6. [IdDataField]
  7. public string ID { get; private set; } = default!;
  8. [DataField("flavorType")]
  9. public FlavorType FlavorType { get; private set; } = FlavorType.Base;
  10. [DataField("description")]
  11. public string FlavorDescription { get; private set; } = default!;
  12. }
  13. public enum FlavorType : byte
  14. {
  15. Base,
  16. Complex
  17. }