From 49063b079e3eccbbc3f5330ee3e5e88bb7796f70 Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 6 Dec 2021 09:57:05 +0800 Subject: *misc --- Client/Source/Phy2D/Joints/FixedJoint.cpp | 0 Client/Source/Phy2D/Joints/FixedJoint.h | 15 +++++++++++++++ Client/Source/Phy2D/Joints/Joint.cpp | 0 Client/Source/Phy2D/Joints/Joint.h | 11 +++++++++++ 4 files changed, 26 insertions(+) create mode 100644 Client/Source/Phy2D/Joints/FixedJoint.cpp create mode 100644 Client/Source/Phy2D/Joints/FixedJoint.h create mode 100644 Client/Source/Phy2D/Joints/Joint.cpp create mode 100644 Client/Source/Phy2D/Joints/Joint.h (limited to 'Client/Source/Phy2D/Joints') diff --git a/Client/Source/Phy2D/Joints/FixedJoint.cpp b/Client/Source/Phy2D/Joints/FixedJoint.cpp new file mode 100644 index 0000000..e69de29 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 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 -- cgit v1.1-26-g67d0