diff --git a/Demos/GimpactTestDemo/main.cpp b/Demos/GimpactTestDemo/main.cpp new file mode 100644 index 000000000..137943e8e --- /dev/null +++ b/Demos/GimpactTestDemo/main.cpp @@ -0,0 +1,15 @@ + +#include "GimpactConcaveDemo.h" +#include "GlutStuff.h" + +//################################## main ##################################### +int main(int argc,char** argv) +{ + gContactAddedCallback = CustomMaterialCombinerCallback; + + GimpactConcaveDemo* concaveDemo = new GimpactConcaveDemo(); /// This will not be Deleted!!! + concaveDemo->initPhysics(); + concaveDemo->setCameraDistance(45.f); + + return glutmain(argc, argv,640,480,"DevO,s GIMPACT Test Demo",concaveDemo); +}