// Constructor
        public GamePage()
        {
            InitializeComponent();

            _game = XamlGame <HighScoresGame> .Create("", this);

            // Sample code to localize the ApplicationBar
            //BuildLocalizedApplicationBar();
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Class constructor
 /// </summary>
 /// <param name="game">The main game object</param>
 public Mode_Game(HighScoresGame game)
     : base(game)
 {
     _game = game;
 }