Exemplo n.º 1
0
        public InformationContainer(TextView scroe, int aSide)
        {
            _getTextView = scroe;
            var scoreDatabaseController = new ScoreDatabaseController();

            HighScore = scoreDatabaseController.get_high_score(aSide);
        }
Exemplo n.º 2
0
 private void refresh_high_score(ScoreDatabaseController scoreDatabaseController, TextView textView)
 {
     textView.Text = "High score:" + scoreDatabaseController.get_high_score(_selectedItem);
 }