首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

OGRE发动机

2012-08-03 
OGRE引擎  {   protected:   public:   TutorialApplication()   {   }   ~TutorialApplication()   {   }

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;

  }

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

热点排行