can someone check the end of this code for errors

private void FixedUpdate()
{
// Read the inputs.
bool crouch = Input.GetKey(KeyCode.LeftControl);
float h = CrossPlatformInputManager.GetAxis(“Horizontal”);
// Pass all parameters to the character control script.
character.Move(h, crouch, jump);
jump = false;
}
}

I can not check this code if I don’t see the Character.Move function and Axises of your CrossPlatformInputManager…