1
0

ActionEvents.cs 270 B

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