DoodleJump.GameMainWindow.DoodleJumerGoToRight C# (CSharp) 메소드

DoodleJumerGoToRight() 개인적인 메소드

private DoodleJumerGoToRight ( ) : void
리턴 void
        private void DoodleJumerGoToRight()
        {
            DoodleJumper.Left += ApplicationSettings.LeftRightIncrease;
            if (DoodleJumper.Location.X > ApplicationSettings.RightBorder)
            {
                DoodleJumper.Left = 0;
            }
        }