aboutsummaryrefslogtreecommitdiffstats
path: root/yage/physics/body.h
diff options
context:
space:
mode:
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