mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +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
229 B
C#
8 lines
229 B
C#
namespace Content.Shared.Interaction.Events;
|
|
|
|
/// <summary>
|
|
/// Raised on the target when successfully petting/hugging something.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly record struct InteractionSuccessEvent(EntityUid User);
|