aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/Physics/body.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/YAGE/Physics/body.hpp')
-rw-r--r--include/YAGE/Physics/body.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/YAGE/Physics/body.hpp b/include/YAGE/Physics/body.hpp
new file mode 100644
index 00000000..70ff2528
--- /dev/null
+++ b/include/YAGE/Physics/body.hpp
@@ -0,0 +1,17 @@
+#ifndef YAGE_BODDY_HPP
+#define YAGE_BODDY_HPP
+
+#include <glm/glm.hpp>
+
+class Body
+{
+private:
+ glm::vec2 centerOfMass_;
+ double mass_;
+
+public:
+ virtual ~Body();
+
+};
+
+#endif