CamelotClient.cpp 601 B

123456789101112131415161718192021222324252627282930313233
  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. //RTTITypeBase* st = DbgSrlzTest::getRTTIStatic();
  13. // DbgSrlzTestST::startUp();
  14. // TextureST::startUp();
  15. test();
  16. gApplication().runMainLoop();
  17. int a = 5;
  18. gApplication().shutDown();
  19. return 0;
  20. }