Files
tbd-station-14/Content.Shared/Interaction/Events/ChangeDirectionAttemptEvent.cs
2022-03-12 23:33:23 +11:00

14 lines
281 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Interaction.Events;
public sealed class ChangeDirectionAttemptEvent : CancellableEntityEventArgs
{
public ChangeDirectionAttemptEvent(EntityUid uid)
{
Uid = uid;
}
public EntityUid Uid { get; }
}