rename ObsoleteDemos back to Demos
fix some relative path issues for loading assets
This commit is contained in:
17
Demos/GjkConvexCastDemo/main.cpp
Normal file
17
Demos/GjkConvexCastDemo/main.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
#include "LinearConvexCastDemo.h"
|
||||
#include "GlutStuff.h"
|
||||
|
||||
int screenWidth = 640;
|
||||
int screenHeight = 480;
|
||||
|
||||
int main(int argc,char** argv)
|
||||
{
|
||||
|
||||
LinearConvexCastDemo* linearCastDemo = new LinearConvexCastDemo();
|
||||
|
||||
linearCastDemo->initPhysics();
|
||||
|
||||
|
||||
return glutmain(argc, argv,screenWidth,screenHeight,"Linear Convex Cast Demo",linearCastDemo);
|
||||
}
|
||||
Reference in New Issue
Block a user