Files
wwdpublic/Content.Shared/Interaction/Events/InteractionFailureEvent.cs
Leon Friedrich 3a2e8ae316 Add IsQueuedForDeletion checks to interaction system (#32526)
(cherry picked from commit 97f6097dad149d819bc4db918759d71cb6de9b04)
2025-09-20 20:33:16 +03:00

10 lines
374 B
C#

namespace Content.Shared.Interaction.Events;
/// <summary>
/// Raised on the target when failing to pet/hug something.
/// </summary>
// TODO INTERACTION
// Rename this, or move it to another namespace to make it clearer that this is specific to "petting/hugging" (InteractionPopupSystem)
[ByRefEvent]
public readonly record struct InteractionFailureEvent(EntityUid User);