Fixing include guards.

This commit is contained in:
Faerbit 2014-10-20 18:48:20 +02:00
parent eefe7e78c9
commit 663ecbbe7d
3 changed files with 7 additions and 5 deletions

View File

@ -3,8 +3,6 @@
#include <ACGL/Math/Math.hh> #include <ACGL/Math/Math.hh>
#endif
class Entity { class Entity {
public: public:
Entity(glm::vec3 position, glm::vec3 rotation); Entity(glm::vec3 position, glm::vec3 rotation);
@ -17,3 +15,5 @@ class Entity {
glm::vec3 position; glm::vec3 position;
glm::vec3 rotation; glm::vec3 rotation;
}; };
#endif

View File

@ -4,8 +4,6 @@
#include <string> #include <string>
#include "entity.hh" #include "entity.hh"
#endif
class Level { class Level {
public: public:
Level(std::string filePath); Level(std::string filePath);
@ -15,3 +13,5 @@ class Level {
std::string filePath; std::string filePath;
std::vector<Entity> entities; std::vector<Entity> entities;
}; };
#endif

View File

@ -1,2 +1,4 @@
#ifndef PHYSICS_HH_INCLUDED
#define PHYSICS_HH_INCLUDED
#endif