17 lines
412 B
C#
17 lines
412 B
C#
using Content.Shared.Actions;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Toggleable;
|
|
|
|
public sealed partial class SwitchableActionEvent : InstantActionEvent;
|
|
|
|
/// <summary>
|
|
/// Generic enum keys for toggle-visualizer appearance data & sprite layers.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public enum SwitchableVisuals : byte
|
|
{
|
|
Switched,
|
|
Layer
|
|
}
|
|
|