* add interaction success/failure events * pro --------- Co-authored-by: deltanedas <@deltanedas:kde.org>
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);
|