DoodleJump.GameMainWindow.DoodleJumerGoToLeft C# (CSharp) Method

DoodleJumerGoToLeft() private method

private DoodleJumerGoToLeft ( ) : void
return void
        private void DoodleJumerGoToLeft()
        {
            DoodleJumper.Left -= ApplicationSettings.LeftRightIncrease;
            if (DoodleJumper.Location.X + ApplicationSettings.DoodleLength <= 0)
            {
                DoodleJumper.Left = ApplicationSettings.RightBorder;
            }
        }