コード例 #1
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            helloWorldGame = new HelloWorldGame();
            helloWorldGame.Run(DrawingSurface);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: ludomotion/helloworld
 public static void Main(string[] args)
 {
     using (HelloWorldGame game = new HelloWorldGame())
     {
         game.Run();
     }
 }
コード例 #3
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            helloWorldGame = new HelloWorldGame();
            helloWorldGame.Run(DrawingSurface);
        }
コード例 #4
0
 public MainPage()
 {
     InitializeComponent();
     game = new HelloWorldGame();
     game.Run(this);
 }
コード例 #5
0
ファイル: Program.cs プロジェクト: cmaughan/SharpDX
 static void Main()
 {
     var program = new HelloWorldGame();
     program.Run();
 }
コード例 #6
0
ファイル: Program.cs プロジェクト: Nezz/SharpDX
 static void Main()
 {
     using (var program = new HelloWorldGame())
         program.Run();
 }
コード例 #7
0
ファイル: MainPage.xaml.cs プロジェクト: wyrover/SharpDX
 public MainPage()
 {
     InitializeComponent();
     game = new HelloWorldGame();
     game.Run(this);
 }
コード例 #8
0
ファイル: Program.cs プロジェクト: wyrover/SharpDX
 static void Main()
 {
     using (var program = new HelloWorldGame())
         program.Run();
 }