Updated allbulletdemos glui framework, to work better with DemoApplication.

This commit is contained in:
ejcoumans
2007-10-23 02:22:18 +00:00
parent 550c500ca7
commit aa28f8c223
10 changed files with 129 additions and 582 deletions

View File

@@ -52,6 +52,14 @@ class BasicDemo : public DemoApplication
virtual void displayCallback();
static DemoApplication* Create()
{
BasicDemo* demo = new BasicDemo;
demo->myinit();
demo->initPhysics();
return demo;
}
};