Asteroids.TResolutionOption.SelectRight C# (CSharp) Method

SelectRight() public method

public SelectRight ( ) : void
return void
        public void SelectRight()
        {
            if (arrayNumber != 0)
            {
                arrayNumber--;
                ChangeResolution(new Vector2(Convert.ToInt32(arResolutions[arrayNumber][1]), Convert.ToInt32(arResolutions[arrayNumber][2])));
            }
        }