aboutsummaryrefslogtreecommitdiffstats
path: root/yage/physics/body.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-09 08:32:39 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-09 08:32:39 +0100
commit6e4681a86fc1d118571dac06ffa811a988a1066a (patch)
tree14d03aa3dbd65e91f74d041ae8203b8c7d13cdf4 /yage/physics/body.h
parent60072c1d8089ffd3294e76636198d14710be95b8 (diff)
downloadYAGE-6e4681a86fc1d118571dac06ffa811a988a1066a.tar.gz
YAGE-6e4681a86fc1d118571dac06ffa811a988a1066a.zip
Stable build
Diffstat (limited to 'yage/physics/body.h')
-rw-r--r--yage/physics/body.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/yage/physics/body.h b/yage/physics/body.h
index bd33a9ac..90682682 100644
--- a/yage/physics/body.h
+++ b/yage/physics/body.h
@@ -9,10 +9,11 @@
#ifndef YAGE_PHYSICS_BODY_H
#define YAGE_PHYSICS_BODY_H
-#include <YAGE/Math/matrix.h>
+#include <math/matrix.h>
namespace yage
{
+
class Body
{
public:
@@ -51,6 +52,7 @@ protected:
Body(Vector2d position = Vector2d(0, 0), double mass = 1,
Vector2d velocity = Vector2d(0, 0), bool gravity = false);
};
+
} // namespace yage
#endif