namespace Content.Server.Item; /// /// Handles whether this item is sharp when toggled on. /// [RegisterComponent] public sealed partial class ItemToggleSharpComponent : Component { /// /// Item can be used to butcher when activated. /// [ViewVariables(VVAccess.ReadOnly), DataField] public bool ActivatedSharp = true; }