summaryrefslogtreecommitdiff
path: root/cObject.h
diff options
context:
space:
mode:
authorGravatar jonas <himself@jonasgunz.de> 2018-12-27 00:26:34 +0100
committerGravatar jonas <himself@jonasgunz.de> 2018-12-27 00:26:34 +0100
commit7015245de4af673af3e6fa62d5d0f9c2e0c2a8a1 (patch)
tree8bec5d1716eebb0fedc75dcc036385443b1ecea5 /cObject.h
parent616951a353caf398908e6e6ce7dddf34a65513e5 (diff)
downloadtermgl-7015245de4af673af3e6fa62d5d0f9c2e0c2a8a1.tar.gz
cleaned working tree
Diffstat (limited to 'cObject.h')
-rw-r--r--cObject.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/cObject.h b/cObject.h
new file mode 100644
index 0000000..c3114c3
--- /dev/null
+++ b/cObject.h
@@ -0,0 +1,36 @@
+#pragma once
+#include <stdlib.h>
+
+#include "cRender.h"
+
+struct sObject
+
+{
+ sPos pos;
+ WORD **wColor;
+ char **cScreen;
+ int sizeX;
+ int sizeY;
+};
+
+class cObject : public cRender
+{
+public:
+ cObject(int _sx, int _sy);
+ //_sx : SizeX
+ //_sy : SizeY
+
+ ~cObject();
+
+ sPos getPosition();
+
+ void setPosition(sPos _pos);
+
+ void setPosition(int _x, int _y);
+
+ sObject getObject();
+
+private:
+ //wColor, cScreen, sizeX and sizeY are inherited from cRender
+ sPos pos;
+};