示例#1
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

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

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