summaryrefslogtreecommitdiff
path: root/lib/location.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/location.hpp')
-rw-r--r--lib/location.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/location.hpp b/lib/location.hpp
new file mode 100644
index 0000000..b019b7a
--- /dev/null
+++ b/lib/location.hpp
@@ -0,0 +1,14 @@
+#ifndef LOCATION_H
+#define LOCATION_H
+
+#include <glm/glm.hpp>
+
+class Location {
+public:
+ explicit Location(glm::vec3 pos = {}, glm::vec3 rot = {}) : pos {pos}, rot {rot} { }
+
+ glm::vec3 pos;
+ glm::vec3 rot;
+};
+
+#endif