void InputJump(bool canJump)
 {
     if (canJump && input.JumpPressed)
     {
         jump.ApplyJump(rb, Vector3.up);
     }
 }