SmokingPipeComponent.cs 481 B

1234567891011121314151617
  1. using Content.Server.Nutrition.EntitySystems;
  2. using Content.Shared.Containers.ItemSlots;
  3. namespace Content.Server.Nutrition.Components
  4. {
  5. /// <summary>
  6. /// A reusable vessel for smoking
  7. /// </summary>
  8. [RegisterComponent, Access(typeof(SmokingSystem))]
  9. public sealed partial class SmokingPipeComponent : Component
  10. {
  11. public const string BowlSlotId = "bowl_slot";
  12. [DataField("bowl_slot")]
  13. public ItemSlot BowlSlot = new();
  14. }
  15. }