body.hpp 193 B

12345678910111213141516
  1. #ifndef _body_hpp
  2. #define _body_hpp
  3. #include "definitions.hpp"
  4. class body
  5. {
  6. public:
  7. body(){ width=0; height=0; }
  8. body(int w, int h) { width=w; height=h; }
  9. int width, height;
  10. };
  11. #endif