Files
tbd-station-14/Content.Shared/Interaction/Events/ChangeDirectionAttemptEvent.cs
2022-02-16 18:23:23 +11:00

15 lines
318 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; }
}
}