Inheritance: OpenTK.GameWindow
コード例 #1
0
 public static void Main()
 {
     using (FontRenderingAdvanced example = new FontRenderingAdvanced())
     {
         // Get the title and category  of this example using reflection.
         ExampleAttribute info = ((ExampleAttribute)example.GetType().GetCustomAttributes(false)[0]);
         example.Title = String.Format("OpenTK | {0} {1}: {2}", info.Category, info.Difficulty, info.Title);
         example.Run(30.0, 0.0);
     }
 }
コード例 #2
0
 public static void Main()
 {
     using (FontRenderingAdvanced example = new FontRenderingAdvanced())
     {
         // Get the title and category  of this example using reflection.
         ExampleAttribute info = ((ExampleAttribute)example.GetType().GetCustomAttributes(false)[0]);
         example.Title = String.Format("OpenTK | {0} {1}: {2}", info.Category, info.Difficulty, info.Title);
         example.Run(30.0, 0.0);
     }
 }