diff options
author | jacopograndi <jak.sk8@hotmail.it> | 2021-08-19 18:46:51 +0200 |
---|---|---|
committer | jacopograndi <jak.sk8@hotmail.it> | 2021-08-19 18:46:51 +0200 |
commit | a8bcacc95045102e67f2feabbdddf79535837554 (patch) | |
tree | 5781dd4cb2fe66b67deab84ff4641b7e21b9c174 /graphics/cam.h |
forgot to make repo until now
Diffstat (limited to 'graphics/cam.h')
-rw-r--r-- | graphics/cam.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/graphics/cam.h b/graphics/cam.h new file mode 100644 index 0000000..e3e158f --- /dev/null +++ b/graphics/cam.h @@ -0,0 +1,14 @@ +#ifndef CAM_H +#define CAM_H + +#include <vector> + + +class Cam { + public: + Cam () { pos = vec2(); scale = 1; } + vec2 pos; + float scale; +}; + +#endif
\ No newline at end of file |