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