aboutsummaryrefslogtreecommitdiff
path: root/Client/Source/Phy2D/Joints
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-12-06 09:57:05 +0800
committerchai <chaifix@163.com>2021-12-06 09:57:05 +0800
commit49063b079e3eccbbc3f5330ee3e5e88bb7796f70 (patch)
treec531bc6c2e54afbe89eeffee98c680a2032001b6 /Client/Source/Phy2D/Joints
parentb30a3c8743d8837e4b1ef871d133ae5e7ef9a06b (diff)
*misc
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