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

12 lines
247 B
C#
Raw Permalink Normal View History

2022-03-13 01:33:23 +13:00
namespace Content.Shared.Interaction.Events;
public sealed class ChangeDirectionAttemptEvent : CancellableEntityEventArgs
{
2022-03-13 01:33:23 +13:00
public ChangeDirectionAttemptEvent(EntityUid uid)
{
2022-03-13 01:33:23 +13:00
Uid = uid;
}
2022-03-13 01:33:23 +13:00
public EntityUid Uid { get; }
}