Files
crystall-punk-14/Content.Shared/Toggleable/ToggleActionEvent.cs

20 lines
464 B
C#
Raw Normal View History

using Content.Shared.Actions;
2022-07-24 23:39:21 +12:00
using Robust.Shared.Serialization;
namespace Content.Shared.Toggleable;
/// <summary>
/// Generic action-event for toggle-able components.
/// </summary>
public sealed partial class ToggleActionEvent : InstantActionEvent { }
2022-07-24 23:39:21 +12:00
/// <summary>
/// Generic enum keys for toggle-visualizer appearance data & sprite layers.
/// </summary>
[Serializable, NetSerializable]
public enum ToggleVisuals : byte
{
Toggled,
Layer
}