14 lines
351 B
C#
14 lines
351 B
C#
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
|
|||
|
|
namespace Content.Server.GameObjects.Components.Kitchen
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Tag component that denotes an entity as Grindable by the reagentgrinder.
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public class GrindableComponent : Component
|
|||
|
|
{
|
|||
|
|
public override string Name => "Grindable";
|
|||
|
|
}
|
|||
|
|
}
|