diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-03-07 01:06:25 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-03-07 01:06:25 +0100 |
commit | 99249ba62bcdfbe300c6ab7db02088d8d1e118c4 (patch) | |
tree | c90f707b593d3d2ff3ba2e06aadadf10da35a696 /src/cObject.h | |
parent | 91312efb1490e899f8800c965865c8095f31f350 (diff) | |
download | termgl-99249ba62bcdfbe300c6ab7db02088d8d1e118c4.tar.gz |
Switched to unsigned cariables for all counting loops and buffer accesses
Diffstat (limited to 'src/cObject.h')
-rw-r--r-- | src/cObject.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/cObject.h b/src/cObject.h index 2504d71..6f24158 100644 --- a/src/cObject.h +++ b/src/cObject.h @@ -3,14 +3,6 @@ #include "cRender.h" -struct sObject -{ - sPos pos; - WORD **wColor; - char **cScreen; - int sizeX; - int sizeY; -}; /** cObject can be used standalone as well as inherited * every cObject has its own framebuffer as well as position viariables to be moveable. @@ -48,11 +40,6 @@ public: */ void setPosition(int _x, int _y); - /** Returns sObject with framebuffer and current position - * DEPRECATED - */ - sObject getObject(); - /** Writes object to framebuffer with offset _cameraPosition */ void write(cRender *_render, sPos _cameraPosition); |