Example #1
0
 static void Main()
 {
     try
      {
     MyOgreWindow win = new MyOgreWindow();
     new SceneCreator(win);
     win.Go();
      }
      catch (System.Runtime.InteropServices.SEHException)
      {
     if (OgreException.IsThrown)
        MessageBox.Show(OgreException.LastException.FullDescription, "An Ogre exception has occurred!");
     else
        throw;
      }
 }
Example #2
0
 static void Main()
 {
     try
     {
         MyOgreWindow win = new MyOgreWindow();
         new SceneCreator(win);
         win.Go();
     }
     catch (System.Runtime.InteropServices.SEHException)
     {
         if (OgreException.IsThrown)
         {
             MessageBox.Show(OgreException.LastException.FullDescription, "An Ogre exception has occurred!");
         }
         else
         {
             throw;
         }
     }
 }