summaryrefslogtreecommitdiff
path: root/servers/physics/joints_sw.h
diff options
context:
space:
mode:
Diffstat (limited to 'servers/physics/joints_sw.h')
-rw-r--r--servers/physics/joints_sw.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/servers/physics/joints_sw.h b/servers/physics/joints_sw.h
index c87c86b599..0f637faf79 100644
--- a/servers/physics/joints_sw.h
+++ b/servers/physics/joints_sw.h
@@ -29,19 +29,16 @@
#ifndef JOINTS_SW_H
#define JOINTS_SW_H
-#include "constraint_sw.h"
#include "body_sw.h"
-
+#include "constraint_sw.h"
class JointSW : public ConstraintSW {
-
public:
-
- virtual PhysicsServer::JointType get_type() const=0;
- _FORCE_INLINE_ JointSW(BodySW **p_body_ptr=NULL,int p_body_count=0) : ConstraintSW(p_body_ptr,p_body_count) {
+ virtual PhysicsServer::JointType get_type() const = 0;
+ _FORCE_INLINE_ JointSW(BodySW **p_body_ptr = NULL, int p_body_count = 0)
+ : ConstraintSW(p_body_ptr, p_body_count) {
}
-
};
#endif // JOINTS_SW_H