Files

13 lines
260 B
C#
Raw Permalink 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; }
}
}