예제 #1
0
파일: Program.cs 프로젝트: fkhadivi/F_Morge
 static void Main(string[] args)
 {
     try
     {
         CelShading app = new CelShading();
         app.Go();
     }
     catch (System.Runtime.InteropServices.SEHException)
     {
         // Check if it's an Ogre Exception
         if (OgreException.IsThrown)
             ExampleApplication.Example.ShowOgreException();
         else
             throw;
     }
 }
예제 #2
0
 static void Main(string[] args)
 {
     try
     {
         CelShading app = new CelShading();
         app.Go();
     }
     catch (System.Runtime.InteropServices.SEHException)
     {
         // Check if it's an Ogre Exception
         if (OgreException.IsThrown)
         {
             ExampleApplication.Example.ShowOgreException();
         }
         else
         {
             throw;
         }
     }
 }