Demonstrates the GameWindow class.
Inheritance: OpenTK.GameWindow
コード例 #1
0
 public static void Main()
 {
     using (SimpleWindow example = new SimpleWindow())
     {
         // Get the title and category  of this example using reflection.
         Utilities.SetWindowTitle(example);
         example.Run(30.0, 0.0);
     }
 }
コード例 #2
0
ファイル: Class1.cs プロジェクト: Chedberg84/ShadowMapExample
 public static void Main()
 {
     using (SimpleWindow example = new SimpleWindow())
     {
         // Get the title and category  of this example using reflection.
         example.Title = "Shadow2Pass";
         example.Run(30.0, 0.0);
     }
 }
コード例 #3
0
 public static void Main()
 {
     using (SimpleWindow example = new SimpleWindow())
     {
         // Get the title and category  of this example using reflection.
         Utilities.SetWindowTitle(example);
         example.Run(30.0, 0.0);
     }
 }