aboutsummaryrefslogtreecommitdiff
path: root/Client/Source/Phy2D/Joints
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Source/Phy2D/Joints')
-rw-r--r--Client/Source/Phy2D/Joints/FixedJoint.cpp0
-rw-r--r--Client/Source/Phy2D/Joints/FixedJoint.h15
-rw-r--r--Client/Source/Phy2D/Joints/Joint.cpp0
-rw-r--r--Client/Source/Phy2D/Joints/Joint.h11
4 files changed, 26 insertions, 0 deletions
diff --git a/Client/Source/Phy2D/Joints/FixedJoint.cpp b/Client/Source/Phy2D/Joints/FixedJoint.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Client/Source/Phy2D/Joints/FixedJoint.cpp
diff --git a/Client/Source/Phy2D/Joints/FixedJoint.h b/Client/Source/Phy2D/Joints/FixedJoint.h
new file mode 100644
index 0000000..585f502
--- /dev/null
+++ b/Client/Source/Phy2D/Joints/FixedJoint.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "Joint.h"
+
+
+namespace Phy2D
+{
+
+ class FixedJoint : public Joint
+ {
+ public:
+
+ };
+
+}
diff --git a/Client/Source/Phy2D/Joints/Joint.cpp b/Client/Source/Phy2D/Joints/Joint.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Client/Source/Phy2D/Joints/Joint.cpp
diff --git a/Client/Source/Phy2D/Joints/Joint.h b/Client/Source/Phy2D/Joints/Joint.h
new file mode 100644
index 0000000..2a16888
--- /dev/null
+++ b/Client/Source/Phy2D/Joints/Joint.h
@@ -0,0 +1,11 @@
+#pragma once
+
+namespace Phy2D
+{
+
+ class Joint
+ {
+
+ };
+
+} \ No newline at end of file