namespace Content.Shared.Actions.Events; /// /// Raised on an action entity to set its event's target to an entity, if it makes sense. /// Does nothing for an instant action as it has no target. /// [ByRefEvent] public record struct ActionSetTargetEvent(EntityUid Target, bool Handled = false);