CamelotClient.cpp 630 B

12345678910111213141516171819202122232425262728293031323334
  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. #include "CmIReflectable.h"
  8. using namespace CamelotEngine;
  9. int _tmain(int argc, _TCHAR* argv[])
  10. {
  11. gApplication().startUp("CamelotGLRenderer.dll");
  12. //gApplication().startUp("CamelotD3D9Renderer.dll");
  13. //RTTITypeBase* st = DbgSrlzTest::getRTTIStatic();
  14. // DbgSrlzTestST::startUp();
  15. // TextureST::startUp();
  16. test();
  17. gApplication().runMainLoop();
  18. int a = 5;
  19. gApplication().shutDown();
  20. return 0;
  21. }