entity2D.h
资源名称:pong.rar [点击查看]
上传用户:szsg028
上传日期:2022-08-01
资源大小:12k
文件大小:0k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- #ifndef ENTITY2D_H
- #define ENTITY2D_H
- #include <windows.h>
- class entity2D
- {
- public:
- entity2D();
- virtual void draw(HDC hDC);
- void setDimensions(int _width, int _height);
- void setPosition(int _x, int _y);
- void setX(float valor);
- void setY(float valor);
- int getWidth();
- int getHeight();
- float getX();
- float getY();
- protected:
- int mWidth;
- int mHeight;
- float mX;
- float mY;
- };
- #endif