Files
OldThink/Content.Shared/Interaction/Events/UseInHandEvent.cs

21 lines
432 B
C#
Raw Normal View History

2022-03-13 01:33:23 +13:00
using JetBrains.Annotations;
namespace Content.Shared.Interaction.Events;
/// <summary>
/// Raised when using the entity in your hands.
/// </summary>
[PublicAPI]
public sealed class UseInHandEvent : HandledEntityEventArgs
{
/// <summary>
/// Entity holding the item in their hand.
/// </summary>
public EntityUid User { get; }
public UseInHandEvent(EntityUid user)
{
User = user;
}
}