1
0

CigarComponent.cs 307 B

123456789101112
  1. using Content.Server.Nutrition.EntitySystems;
  2. namespace Content.Server.Nutrition.Components
  3. {
  4. /// <summary>
  5. /// A disposable, single-use smokable.
  6. /// </summary>
  7. [RegisterComponent, Access(typeof(SmokingSystem))]
  8. public sealed partial class CigarComponent : Component
  9. {
  10. }
  11. }