ChangeDirectionAttemptEvent.cs 247 B

1234567891011
  1. namespace Content.Shared.Interaction.Events;
  2. public sealed class ChangeDirectionAttemptEvent : CancellableEntityEventArgs
  3. {
  4. public ChangeDirectionAttemptEvent(EntityUid uid)
  5. {
  6. Uid = uid;
  7. }
  8. public EntityUid Uid { get; }
  9. }