mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-16 14:40:05 +00:00
dc491936a2
fix some relative path issues for loading assets
19 lines
464 B
C++
19 lines
464 B
C++
|
|
#include "VehicleDemo.h"
|
|
#include "GlutStuff.h"
|
|
#include "GLDebugDrawer.h"
|
|
#include "btBulletDynamicsCommon.h"
|
|
GLDebugDrawer gDebugDrawer;
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
|
|
VehicleDemo* vehicleDemo = new VehicleDemo;
|
|
|
|
vehicleDemo->initPhysics();
|
|
vehicleDemo->getDynamicsWorld()->setDebugDrawer(&gDebugDrawer);
|
|
|
|
return glutmain(argc, argv,640,480,"Bullet Vehicle Demo. http://www.continuousphysics.com/Bullet/phpBB2/", vehicleDemo);
|
|
}
|
|
|