Files
crystall-punk-14/Content.Shared/Interaction/Events/GettingUsedAttemptEvent.cs

11 lines
364 B
C#
Raw Normal View History

namespace Content.Shared.Interaction.Events;
/// <summary>
/// Event raised on an item when attempting to use it in your hands. Cancelling it stops the interaction.
/// </summary>
/// <param name="user">The user of said item</param>
public sealed class GettingUsedAttemptEvent(EntityUid user) : CancellableEntityEventArgs
{
public EntityUid User = user;
}