2021-09-26 15:19:00 +02:00
|
|
|
using Content.Server.Nutrition.EntitySystems;
|
|
|
|
|
using Robust.Shared.Analyzers;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Nutrition.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A disposable, single-use smokable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, Friend(typeof(SmokingSystem))]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class CigarComponent : Component
|
2021-09-26 15:19:00 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|