using Content.Shared.Movement.Components; namespace Content.Shared.Movement.Events; /// /// Raised whenever needs to be updated. Cancel this event to prevent a /// mover from moving. /// public sealed class UpdateCanMoveEvent : CancellableEntityEventArgs { public UpdateCanMoveEvent(EntityUid uid) { Uid = uid; } public EntityUid Uid { get; } }