Demonstrates the GameWindow class.
Inheritance: OpenTK.GameWindow
Exemplo n.º 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);
     }
 }
Exemplo n.º 2
0
 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);
     }
 }
Exemplo n.º 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);
     }
 }