Files
bullet3/Demos/ForkLiftDemo/main.cpp
2008-09-06 00:56:56 +00:00

16 lines
318 B
C++

#include "ForkLiftDemo.h"
#include "GlutStuff.h"
int main(int argc,char** argv)
{
ForkLiftDemo* pForkLiftDemo = new ForkLiftDemo;
pForkLiftDemo->initPhysics();
return glutmain(argc, argv,640,480,"Bullet ForkLift Demo. http://www.continuousphysics.com/Bullet/phpBB2/", pForkLiftDemo);
}