1. #include "Windows.h"
  2. #include "IrrlichtEngineManager.h"
  3.  
  4. int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
  5. {
  6. ENGINEMANAGER.Startup();
  7. ENGINEMANAGER.StartRenderLoop();
  8. ENGINEMANAGER.Shutdown();
  9.  
  10. return 0;
  11. }