#ifndef _body_hpp #define _body_hpp #include "definitions.hpp" class body { public: body(){ width=0; height=0; } body(int w, int h) { width=w; height=h; } int width, height; }; #endif