CamelotClient.cpp 488 B

12345678910111213141516171819202122232425262728
  1. // CamelotClient.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include "CmApplication.h"
  5. #include "CmDynLibManager.h"
  6. #include "TestingGround.h"
  7. using namespace CamelotEngine;
  8. int _tmain(int argc, _TCHAR* argv[])
  9. {
  10. gApplication().startUp("CamelotGLRenderer.dll");
  11. //gApplication().startUp("CamelotD3D9Renderer.dll");
  12. test();
  13. gApplication().runMainLoop();
  14. int a = 5;
  15. gApplication().shutDown();
  16. return 0;
  17. }