Fixing include guards.
This commit is contained in:
parent
eefe7e78c9
commit
663ecbbe7d
@ -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
|
||||||
|
4
level.hh
4
level.hh
@ -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
|
||||||
|
@ -1,2 +1,4 @@
|
|||||||
|
#ifndef PHYSICS_HH_INCLUDED
|
||||||
|
#define PHYSICS_HH_INCLUDED
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user