2021-06-19 10:03:24 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Interaction.Events
|
|
|
|
|
|
{
|
|
|
|
|
|
public class InteractionAttemptEvent : CancellableEntityEventArgs
|
|
|
|
|
|
{
|
2021-11-09 14:54:00 +01:00
|
|
|
|
public InteractionAttemptEvent(EntityUid uid)
|
2021-06-19 10:03:24 +02:00
|
|
|
|
{
|
2021-11-09 14:54:00 +01:00
|
|
|
|
Uid = uid;
|
2021-06-19 10:03:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-11-09 14:54:00 +01:00
|
|
|
|
public EntityUid Uid { get; }
|
2021-06-19 10:03:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|