コード例 #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
ファイル: Program.cs プロジェクト: andyhebear/likeleon
 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;
         }
     }
 }