13 lines
260 B
C#
13 lines
260 B
C#
namespace Content.Shared.Interaction.Events
|
|
{
|
|
public sealed class UseAttemptEvent : CancellableEntityEventArgs
|
|
{
|
|
public UseAttemptEvent(EntityUid uid)
|
|
{
|
|
Uid = uid;
|
|
}
|
|
|
|
public EntityUid Uid { get; }
|
|
}
|
|
}
|