public void Update()
    {
        float rotation = customInput.GetAxis("Horizontal");

        if (rotation != 0)
        {
            plane.Rotate(rotation);
        }
        customInput.HandleInput();
    }