Example #1
0
    void GoToNext()
    {
        if (destPoint >= 7)
        {
            destPoint = 1;
        }
        else
        {
            destPoint += 1;
        }

        plane.PointChange(destPoint);
    }