CamelotClient.cpp 424 B

12345678910111213141516171819202122232425
  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. test();
  10. gApplication().startUp("CamelotGLRenderer.dll");
  11. //gApplication().startUp("CamelotD3D9Renderer.dll");
  12. int a = 5;
  13. gApplication().shutDown();
  14. return 0;
  15. }