diff options
Diffstat (limited to 'inc/camera.hpp')
-rw-r--r-- | inc/camera.hpp | 14 |
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 |