From 99249ba62bcdfbe300c6ab7db02088d8d1e118c4 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Thu, 7 Mar 2019 01:06:25 +0100 Subject: Switched to unsigned cariables for all counting loops and buffer accesses --- src/cObject.h | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/cObject.h') 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); -- cgit v1.2.3