| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // CamelotRenderer.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include <string>
- #include "OgreColourValue.h"
- #include "CmMath.h"
- #include "CmMatrix3.h"
- #include "CmMatrix4.h"
- #include "CmPlane.h"
- #include "OgrePrerequisites.h"
- #include "CmQuaternion.h"
- #include "OgreString.h"
- #include "OgreStringConverter.h"
- #include "CmVector2.h"
- #include "CmVector3.h"
- #include "CmVector4.h"
- #include "CmHardwareBuffer.h"
- #include "OgreD3D9Prerequisites.h"
- #include "OgreD3D9VideoMode.h"
- #include "CmRenderSystem.h"
- #include "CmApplication.h"
- using namespace CamelotEngine;
- int _tmain(int argc, _TCHAR* argv[])
- {
- //const String& name = CamelotEngine::gApplication().getRenderSystem()->getName();
- gApplication().startUp();
- int a = 5;
- gApplication().shutDown();
- return 0;
- }
|