Files
tbd-station-14/Content.Server/Nutrition/Components/CigarComponent.cs
2022-05-13 17:59:03 +10:00

13 lines
299 B
C#

using Content.Server.Nutrition.EntitySystems;
namespace Content.Server.Nutrition.Components
{
/// <summary>
/// A disposable, single-use smokable.
/// </summary>
[RegisterComponent, Friend(typeof(SmokingSystem))]
public sealed class CigarComponent : Component
{
}
}