19 lines
477 B
C++
19 lines
477 B
C++
|
|
#include "ForkLiftDemo.h"
|
|
#include "GlutStuff.h"
|
|
#include "GLDebugDrawer.h"
|
|
#include "btBulletDynamicsCommon.h"
|
|
GLDebugDrawer gDebugDrawer;
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
|
|
ForkLiftDemo* pForkLiftDemo = new ForkLiftDemo;
|
|
|
|
pForkLiftDemo->initPhysics();
|
|
pForkLiftDemo->getDynamicsWorld()->setDebugDrawer(&gDebugDrawer);
|
|
|
|
return glutmain(argc, argv,1024,768,"Bullet ForkLift Demo. http://www.continuousphysics.com/Bullet/phpBB2/", pForkLiftDemo);
|
|
}
|
|
|