Example window
Inheritance: OpenTK.GameWindow
Esempio n. 1
0
 static void Main(string[] args)
 {
     using (ExampleWindow ex = new ExampleWindow())
     {
         ex.Run();
     }
 }
Esempio n. 2
0
 static void Main(string[] args)
 {
                 #if OPENTK || STANDALONE
     using (ExampleWindow ex = new ExampleWindow())
     {
         ex.Run();
     }
                 #else
     Console.WriteLine("SharpNav.Examples does not support this configuration of SharpNav.");
                 #endif
 }
Esempio n. 3
0
		static void Main(string[] args)
		{
			#if OPENTK || STANDALONE
			using (ExampleWindow ex = new ExampleWindow())
			{
				ex.Run();
			}
			#else
			Console.WriteLine("SharpNav.Examples does not support this configuration of SharpNav.");
			#endif
		}