using Robust.Shared.GameStates; namespace Content.Shared.Item.ItemToggle.Components; /// /// Handles whether the item is hot when toggled on. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ItemToggleHotComponent : Component { /// /// Item becomes hot when active. /// [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] public bool IsHotWhenActivated = true; }