DoodleJump.GameMainWindow.DrawScore C# (CSharp) Method

DrawScore() private method

private DrawScore ( PaintEventArgs e ) : void
e PaintEventArgs
return void
        private void DrawScore(PaintEventArgs e)
        {
            Graphics g = e.Graphics;
            if (_DoodlJumper.Lose != true)
            {
                g.DrawString("Score:" + (ApplicationSettings.GameHight + this.AutoScrollPosition.Y).ToString(), new Font("Arial", 10), Brushes.Black, new RectangleF(0, 0, 100, 18));
                _score = (ApplicationSettings.GameHight + this.AutoScrollPosition.Y);
            }
        }