2024-09-18 22:36:44 +00:00
|
|
|
namespace Content.Shared.Interaction.Events;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raised on the target when successfully petting/hugging something.
|
|
|
|
|
/// </summary>
|
2024-10-14 17:13:35 +13:00
|
|
|
// TODO INTERACTION
|
|
|
|
|
// Rename this, or move it to another namespace to make it clearer that this is specific to "petting/hugging" (InteractionPopupSystem)
|
2024-09-18 22:36:44 +00:00
|
|
|
[ByRefEvent]
|
|
|
|
|
public readonly record struct InteractionSuccessEvent(EntityUid User);
|