mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-07-20 04:59:34 +00:00
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);
|
|
}
|
|
|