예제 #1
0
파일: Program.cs 프로젝트: mmusial/SharpNav
 static void Main(string[] args)
 {
     using (ExampleWindow ex = new ExampleWindow())
     {
         ex.Run();
     }
 }
예제 #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
 }
예제 #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
		}