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