From 33b917e5580a5356ab9be5a2f1c8e9f0944a6eec Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Mon, 31 Jul 2017 22:09:38 +0100 Subject: Adding coding standard --- include/YAGE/Physics/body.hpp | 6 +++--- include/YAGE/Physics/collider.hpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'include') 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 @@ -38,6 +38,6 @@ public: virtual bool inside(const glm::vec2 &point) const=0; }; -} // yage +} // namespace yage #endif -- cgit