CamelotClient.cpp 458 B

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