]> git.localhorst.tv Git - blank.git/blobdiff - src/model/Shape.hpp
glm backwards compatibility
[blank.git] / src / model / Shape.hpp
index 2f79f82b941459592cb0affbb44734191055f2e9..80dc4a33ba6d28803f9de4b603e1cf83b2b00b9f 100644 (file)
@@ -2,14 +2,14 @@
 #define BLANK_MODEL_SHAPE_HPP_
 
 #include "CollisionBounds.hpp"
-#include "geometry.hpp"
+#include "../geometry/primitive.hpp"
 #include "../graphics/BlockMesh.hpp"
 #include "../graphics/EntityMesh.hpp"
+#include "../graphics/glm.hpp"
 #include "../world/Block.hpp"
 
 #include <memory>
 #include <vector>
-#include <glm/glm.hpp>
 
 
 namespace blank {
@@ -70,7 +70,7 @@ public:
 
        size_t OutlineCount() const noexcept;
        size_t OutlineIndexCount() const noexcept;
-       void Outline(OutlineMesh::Buffer &out) const;
+       void Outline(PrimitiveMesh::Buffer &out) const;
 
        bool Intersects(
                const Ray &,