summaryrefslogtreecommitdiff
path: root/lib/location.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/location.hpp')
-rw-r--r--lib/location.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/location.hpp b/lib/location.hpp
index 1360c47..078f5d3 100644
--- a/lib/location.hpp
+++ b/lib/location.hpp
@@ -1,11 +1,14 @@
#pragma once
-#include <glm/glm.hpp>
+#include <glm/mat4x4.hpp>
+#include <glm/vec3.hpp>
class Location {
public:
explicit Location(glm::vec3 pos = {}, glm::vec3 rot = {}) : pos {pos}, rot {rot} { }
+ glm::mat4 getTransform() const;
+
glm::vec3 pos;
glm::vec3 rot;
};