X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FPrimitiveMesh.hpp;h=013bf37bde34175c57b0d13c773fa11334eb3cda;hb=afc50302943e4000a8621c23960d63b208c8a400;hp=1aa3cce58acf417e6605fe82f99c2d473845ed1c;hpb=75172fd735e34082c34b47ae7c194445b53038d9;p=blank.git diff --git a/src/graphics/PrimitiveMesh.hpp b/src/graphics/PrimitiveMesh.hpp index 1aa3cce..013bf37 100644 --- a/src/graphics/PrimitiveMesh.hpp +++ b/src/graphics/PrimitiveMesh.hpp @@ -10,6 +10,8 @@ namespace blank { +struct AABB; + class PrimitiveMesh { public: @@ -52,6 +54,11 @@ public: const glm::vec2 &pivot = glm::vec2(0.0f) ); + void OutlineBox( + const AABB &, + const glm::vec4 &color = glm::vec4(0.0f) + ); + }; using VAO = VertexArray;