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

10 lines
247 B
C#
Raw Permalink Normal View History

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