GetCurrentScore() public method

public GetCurrentScore ( ) : int
return int
        private void ShowScore(MineSweeperGame g)
        {
            int currentScore = g.GetCurrentScore ();
            if (currentScore > highScore) {
                highScore = currentScore;
                preferences.Put(HIGHSCOREKEY, highScore.ToString());
            }

            currentScoreLabel.Text = currentScore.ToString ();
            highScoreLabel.Text = highScore.ToString ();
        }