读书人

OGRE发动机

发布时间: 2012-08-03 00:12:14 作者: rapoo

OGRE引擎

  {

  protected:

  public:

  TutorialApplication()

  {

  }

  ~TutorialApplication()

  {

  }

  protected:

  void createScene(void)

  {

  }

  };

  #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32

  #define WIN32_LEAN_AND_MEAN

  #include "windows.h"

  INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT )

  #else

  int main(int argc, char **argv)

  #endif

  {

  // Create application object

  TutorialApplication app;

  try {

  app.go();

  } catch( Exception& e ) {

  #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32

  MessageBoxA( NULL, e.what(), "An exception has occurred!", MB_OK | MB_ICONERROR | MB_TASKMODAL);

  #else

  fprintf(stderr, "An exception has occurred: %s\n",

  e.what());

  #endif

  }

  return 0;

  }

  ----------------------------------------------------

读书人网 >开源软件

热点推荐