mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 23:48:15 +03:00
15 lines
363 B
C#
15 lines
363 B
C#
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))]
|
|
public sealed class CigarComponent : Component
|
|
{
|
|
}
|
|
}
|