Пример #1
0
        // Constructor
        public GamePage()
        {
            InitializeComponent();

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

            // Sample code to localize the ApplicationBar
            //BuildLocalizedApplicationBar();
        }
Пример #2
0
 static void Main()
 {
     using (var game = new Game1())
         game.Run();
 }