Ejemplo n.º 1
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            helloWorldGame = new SpriteBatchAndFontGame();
            helloWorldGame.Run(DrawingSurface);
        }
Ejemplo n.º 2
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

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