]> git.localhorst.tv Git - blank.git/blobdiff - src/ui/HUD.hpp
renamed OutlineMesh -> PrimitiveMesh
[blank.git] / src / ui / HUD.hpp
index 32a167b865d2979209f763a1e12341280f3b2f28..cab8f93e0bf13c26cccb69a6a3a4d48b6ac28fa9 100644 (file)
@@ -4,7 +4,7 @@
 #include "FixedText.hpp"
 #include "MessageBox.hpp"
 #include "../graphics/EntityMesh.hpp"
-#include "../graphics/OutlineMesh.hpp"
+#include "../graphics/PrimitiveMesh.hpp"
 
 #include <glm/glm.hpp>
 
@@ -57,7 +57,7 @@ private:
        const Player &player;
 
        // block focus
-       OutlineMesh outline;
+       PrimitiveMesh outline;
        glm::mat4 outline_transform;
        bool outline_visible;
 
@@ -82,7 +82,7 @@ private:
        IntervalTimer msg_timer;
 
        // crosshair
-       OutlineMesh crosshair;
+       PrimitiveMesh crosshair;
 
 };