Files
tbd-station-14/Content.Client/Actions/ActionEvents.cs

10 lines
270 B
C#

namespace Content.Client.Actions;
/// <summary>
/// This event is raised when a user clicks on an empty action slot. Enables other systems to fill this slot.
/// </summary>
public sealed class FillActionSlotEvent : EntityEventArgs
{
public EntityUid? Action;
}