13 lines
299 B
C#
13 lines
299 B
C#
using Content.Server.Nutrition.EntitySystems;
|
|
|
|
namespace Content.Server.Nutrition.Components
|
|
{
|
|
/// <summary>
|
|
/// A disposable, single-use smokable.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(SmokingSystem))]
|
|
public sealed class CigarComponent : Component
|
|
{
|
|
}
|
|
}
|