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

13 lines
260 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
namespace Content.Shared.Interaction.Events
{
public sealed class UseAttemptEvent : CancellableEntityEventArgs
{
public UseAttemptEvent(EntityUid uid)
{
Uid = uid;
}
public EntityUid Uid { get; }
}
}