From 5ed49cc3a24626bb17da5c69cc8cb758f81e91e4 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Sun, 3 Aug 2014 14:00:22 -0700 Subject: [PATCH] fix missing implementation --- Demos/CommonPhysicsSetup.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Demos/CommonPhysicsSetup.h b/Demos/CommonPhysicsSetup.h index 355c9a11b..d436678e3 100644 --- a/Demos/CommonPhysicsSetup.h +++ b/Demos/CommonPhysicsSetup.h @@ -33,7 +33,9 @@ struct GraphicsPhysicsBridge return 0; } - virtual void setUpAxis(int axis)=0; + virtual void setUpAxis(int axis) + { + } };