Demo command line browser entry point.
This demo browser is implemented using a commandline interface.
Inheritance: IDisposable
示例#1
0
文件: Game.cs 项目: WolfgangSt/axiom
 private static void Main( string[] args )
 {
     try
     {
         using ( Game main = new Game() )
         {
             main.Run();//show and start rendering
         }//dispose of it when done
     }
     catch ( Exception ex )
     {
         Console.WriteLine( BuildExceptionString( ex ) );
         Console.WriteLine( "An exception has occurred.  Press enter to continue..." );
         Console.ReadLine();
     }
 }