namespace Content.Shared.Actions.Events; /// /// Raised on an action entity to have the event-holding component cast and set its event. /// If it was set successfully then Handled must be set to true. /// [ByRefEvent] public record struct ActionSetEventEvent(BaseActionEvent Event, bool Handled = false);