2022-05-13 00:59:03 -07:00
|
|
|
|
namespace Content.Shared.Interaction.Events
|
2021-06-19 10:03:24 +02:00
|
|
|
|
{
|
2024-05-31 16:26:19 -04:00
|
|
|
|
public sealed class UseAttemptEvent(EntityUid uid, EntityUid used) : CancellableEntityEventArgs
|
2021-06-19 10:03:24 +02:00
|
|
|
|
{
|
2024-05-31 16:26:19 -04:00
|
|
|
|
public EntityUid Uid { get; } = uid;
|
2021-06-19 10:03:24 +02:00
|
|
|
|
|
2024-05-31 16:26:19 -04:00
|
|
|
|
public EntityUid Used = used;
|
2021-06-19 10:03:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|