mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-11 09:50:06 +00:00
5f5dfcf6b8
moved more demos into AllBulletDemos
16 lines
308 B
C++
16 lines
308 B
C++
|
|
#include "VehicleDemo.h"
|
|
#include "GlutStuff.h"
|
|
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
|
|
VehicleDemo* vehicleDemo = new VehicleDemo;
|
|
|
|
vehicleDemo->initPhysics();
|
|
|
|
return glutmain(argc, argv,640,480,"Bullet Vehicle Demo. http://www.continuousphysics.com/Bullet/phpBB2/", vehicleDemo);
|
|
}
|
|
|