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

            helloWorldGame = new SpriteBatchAndFontGame();
            helloWorldGame.Run(DrawingSurface);
        }
Exemple #2
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            helloWorldGame = new SpriteBatchAndFontGame();
            helloWorldGame.Run(DrawingSurface);
        }
Exemple #3
0
 public MainPage()
 {
     InitializeComponent();
     game = new SpriteBatchAndFontGame();
     game.Run(this);
 }
 public MainPage()
 {
     InitializeComponent();
     game = new SpriteBatchAndFontGame();
     game.Run(this);
 }
Exemple #5
0
 static void Main()
 {
     var program = new SpriteBatchAndFontGame();
     program.Run();
 }
Exemple #6
0
 static void Main()
 {
     using (var program = new SpriteBatchAndFontGame())
         program.Run();
 }
Exemple #7
0
 static void Main()
 {
     using (var program = new SpriteBatchAndFontGame())
         program.Run();
 }