CamelotClient.cpp 700 B

123456789101112131415161718192021222324252627282930313233343536
  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. IReflectable* refl = IReflectable::createInstanceFromTypeId(102);
  18. gApplication().runMainLoop();
  19. int a = 5;
  20. gApplication().shutDown();
  21. return 0;
  22. }