9 lines
218 B
C#
9 lines
218 B
C#
|
|
using Content.Shared.Actions;
|
||
|
|
|
||
|
|
namespace Content.Shared.Toggleable;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Generic action-event for toggle-able components.
|
||
|
|
/// </summary>
|
||
|
|
public sealed class ToggleActionEvent : PerformActionEvent { }
|