mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
* add interaction success/failure events * pro --------- Co-authored-by: deltanedas <@deltanedas:kde.org> (cherry picked from commit 8a924c84ae57dfe18fe0c27f995b4ea16be6a527) (cherry picked from commit dd5b1322ac54c8598398eaa5f4669364dcb222ea)
8 lines
219 B
C#
8 lines
219 B
C#
namespace Content.Shared.Interaction.Events;
|
|
|
|
/// <summary>
|
|
/// Raised on the target when failing to pet/hug something.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly record struct InteractionFailureEvent(EntityUid User);
|