fix build error in SupportFuncDemo.h

This commit is contained in:
erwin coumans
2014-10-17 10:19:16 -07:00
parent eda1ff77db
commit c0b4871f6c

View File

@@ -5,6 +5,8 @@
#include "OpenGLWindow/CommonGraphicsApp.h" #include "OpenGLWindow/CommonGraphicsApp.h"
#include "BulletCollision/CollisionShapes/btSphereShape.h" #include "BulletCollision/CollisionShapes/btSphereShape.h"
///quick demo showing the support map function (localGetSupportingVertex)
class MySupportFuncDemo : public BulletDemoInterface class MySupportFuncDemo : public BulletDemoInterface
{ {
CommonGraphicsApp* m_app; CommonGraphicsApp* m_app;
@@ -96,15 +98,15 @@ public:
} }
virtual bool mouseMoveCallback(float x,float y) virtual bool mouseMoveCallback(float x,float y)
{ {
return false;
} }
virtual bool mouseButtonCallback(int button, int state, float x, float y) virtual bool mouseButtonCallback(int button, int state, float x, float y)
{ {
return false;
} }
virtual bool keyboardCallback(int key, int state) virtual bool keyboardCallback(int key, int state)
{ {
return false;
} }
}; };