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

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

            // Sample code to localize the ApplicationBar
            //BuildLocalizedApplicationBar();
        }
Example #2
0
 static void Main()
 {
     using (var game = new AudaciousGame())
         game.Run();
 }