| 12345678910111213141516171819202122232425262728 |
- // CamelotClient.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include "CmApplication.h"
- #include "CmDynLibManager.h"
- #include "TestingGround.h"
- using namespace CamelotEngine;
- int _tmain(int argc, _TCHAR* argv[])
- {
- gApplication().startUp("CamelotGLRenderer.dll");
- //gApplication().startUp("CamelotD3D9Renderer.dll");
- test();
- gApplication().runMainLoop();
- int a = 5;
- gApplication().shutDown();
- return 0;
- }
|