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>
#endif
class Entity {
public:
Entity(glm::vec3 position, glm::vec3 rotation);
@ -17,3 +15,5 @@ class Entity {
glm::vec3 position;
glm::vec3 rotation;
};
#endif

View File

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

View File

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