CamelotClient.cpp 382 B

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