#ifndef _OBJECT_HH_ #define _OBJECT_HH_ class Object { protected: float posX; float posY; float posZ; public: float getPosX(); float getPosZ(); virtual void draw() = 0; }; #endif