summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorLizzy Hunt <lizzy.hunt@usu.edu>2023-11-21 13:29:11 -0700
committerLizzy Hunt <lizzy.hunt@usu.edu>2023-11-21 13:34:42 -0700
commit205bddb307a1148828ae1cdbc56e960a401834a3 (patch)
tree960be56f99a79c04284fdf426de2a1f2de641deb /inc
downloadgbarubik-205bddb307a1148828ae1cdbc56e960a401834a3.tar.gz
gbarubik-205bddb307a1148828ae1cdbc56e960a401834a3.zip
init
Diffstat (limited to 'inc')
-rw-r--r--inc/camera.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/inc/camera.hpp b/inc/camera.hpp
new file mode 100644
index 0000000..56dd89b
--- /dev/null
+++ b/inc/camera.hpp
@@ -0,0 +1,14 @@
+#include <cstdint>
+
+#ifndef CAMERA_HPP
+#define CAMERA_HPP
+
+class Camera {
+private:
+ std::uint32_t m_pos;
+
+public:
+ Camera();
+};
+
+#endif