aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-07-31 22:09:38 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-07-31 22:09:38 +0100
commit33b917e5580a5356ab9be5a2f1c8e9f0944a6eec (patch)
tree09b6a8cae0efea6fb8a0efc58aa75698849ec870 /include
parent21a99449c415bfa7605cb86c9bc17ba22a43b498 (diff)
downloadYAGE-33b917e5580a5356ab9be5a2f1c8e9f0944a6eec.tar.gz
YAGE-33b917e5580a5356ab9be5a2f1c8e9f0944a6eec.zip
Adding coding standard
Diffstat (limited to 'include')
-rw-r--r--include/YAGE/Physics/body.hpp6
-rw-r--r--include/YAGE/Physics/collider.hpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/include/YAGE/Physics/body.hpp b/include/YAGE/Physics/body.hpp
index 49406278..8fb7aaf6 100644
--- a/include/YAGE/Physics/body.hpp
+++ b/include/YAGE/Physics/body.hpp
@@ -6,8 +6,8 @@
* ----------------------------------------------------------------------------
*/
-#ifndef YAGE_BODY_HPP
-#define YAGE_BODY_HPP
+#ifndef YAGE_PHYSICS_BODY_HPP
+#define YAGE_PHYSICS_BODY_HPP
#include "Math/matrix.hpp"
@@ -55,6 +55,6 @@ protected:
bool gravity=false);
};
-} // yage
+} // namespace yage
#endif
diff --git a/include/YAGE/Physics/collider.hpp b/include/YAGE/Physics/collider.hpp
index 86b2a0c3..fc5d38d5 100644
--- a/include/YAGE/Physics/collider.hpp
+++ b/include/YAGE/Physics/collider.hpp
@@ -6,8 +6,8 @@
* ----------------------------------------------------------------------------
*/
-#ifndef YAGE_COLLIDER_HPP
-#define YAGE_COLLIDER_HPP
+#ifndef YAGE_PHYSICS_COLLIDER_HPP
+#define YAGE_PHYSICS_COLLIDER_HPP
#include <glm/glm.hpp>
@@ -38,6 +38,6 @@ public:
virtual bool inside(const glm::vec2 &point) const=0;
};
-} // yage
+} // namespace yage
#endif