]> git.localhorst.tv Git - blank.git/blobdiff - src/ui/HUD.hpp
renamed OutlineMesh -> PrimitiveMesh
[blank.git] / src / ui / HUD.hpp
index d15643f4d4476090fc98138e10bcdaeffc2cbd14..cab8f93e0bf13c26cccb69a6a3a4d48b6ac28fa9 100644 (file)
@@ -3,8 +3,8 @@
 
 #include "FixedText.hpp"
 #include "MessageBox.hpp"
-#include "../model/EntityModel.hpp"
-#include "../model/OutlineModel.hpp"
+#include "../graphics/EntityMesh.hpp"
+#include "../graphics/PrimitiveMesh.hpp"
 
 #include <glm/glm.hpp>
 
@@ -57,13 +57,13 @@ private:
        const Player &player;
 
        // block focus
-       OutlineModel outline;
+       PrimitiveMesh outline;
        glm::mat4 outline_transform;
        bool outline_visible;
 
        // "inventory"
-       EntityModel block;
-       EntityModel::Buffer block_buf;
+       EntityMesh block;
+       EntityMesh::Buffer block_buf;
        glm::mat4 block_transform;
        FixedText block_label;
        bool block_visible;
@@ -82,7 +82,7 @@ private:
        IntervalTimer msg_timer;
 
        // crosshair
-       OutlineModel crosshair;
+       PrimitiveMesh crosshair;
 
 };