using Content.Shared.Actions;
using Robust.Shared.Serialization;
namespace Content.Shared.Toggleable;
///
/// Generic action-event for toggle-able components.
///
///
/// If you are using ItemToggleComponent subscribe to ItemToggledEvent instead.
///
public sealed partial class ToggleActionEvent : InstantActionEvent;
///
/// Generic enum keys for toggle-visualizer appearance data & sprite layers.
///
[Serializable, NetSerializable]
public enum ToggleVisuals : byte
{
Toggled,
Layer
}