Exemple #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;
      }
 }
Exemple #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;
         }
     }
 }