예제 #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);
 }
예제 #4
0
 public MainPage()
 {
     InitializeComponent();
     game = new SpriteBatchAndFontGame();
     game.Run(this);
 }
예제 #5
0
 static void Main()
 {
     var program = new SpriteBatchAndFontGame();
     program.Run();
 }
예제 #6
0
파일: Program.cs 프로젝트: wyrover/SharpDX
 static void Main()
 {
     using (var program = new SpriteBatchAndFontGame())
         program.Run();
 }
예제 #7
0
 static void Main()
 {
     using (var program = new SpriteBatchAndFontGame())
         program.Run();
 }