entity2D.h
上传用户:szsg028
上传日期:2022-08-01
资源大小:12k
文件大小:0k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef ENTITY2D_H
  2. #define ENTITY2D_H
  3. #include <windows.h>
  4. class entity2D
  5. {
  6. public:
  7. entity2D();
  8. virtual void draw(HDC hDC);
  9. void setDimensions(int _width, int _height);
  10. void setPosition(int _x, int _y);
  11. void setX(float valor);
  12. void setY(float valor);
  13. int getWidth();
  14. int getHeight();
  15. float getX();
  16. float getY();
  17. protected:
  18. int mWidth;
  19. int mHeight;
  20. float mX;
  21. float mY;
  22. };
  23. #endif