summaryrefslogtreecommitdiff
path: root/inc/opengl/graphicsdata.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/opengl/graphicsdata.hpp')
-rw-r--r--inc/opengl/graphicsdata.hpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/inc/opengl/graphicsdata.hpp b/inc/opengl/graphicsdata.hpp
new file mode 100644
index 0000000..df8d76e
--- /dev/null
+++ b/inc/opengl/graphicsdata.hpp
@@ -0,0 +1,49 @@
+#ifndef graphicsdata_h
+#define graphicsdata_h
+
+#include <glm/glm.hpp>
+#include <glm/gtx/transform.hpp>
+
+#include "camera.hpp"
+
+class GraphicsData
+{
+ public:
+
+ float x;
+ float y;
+ float r;
+ float g;
+ float b;
+ float sides;
+
+ GraphicsData(){
+ this->x = 0;
+ this->y = 0;
+ this->r = 0;
+ this->g = 0;
+ this->b = 0;
+ this->sides = 0;
+ }
+
+
+ GraphicsData(float x,float y,float r,float g,float b,float sides){
+ this->x = 0;
+ this->y = 0;
+ this->r = 0;
+ this->g = 0;
+ this->b = 0;
+ this->sides = 0;
+ }
+
+ float getX(){
+ return x;
+ }
+
+ float getY(){
+ return y;
+ }
+
+};
+
+#endif