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

GDI/图象编程

开发平台:

Visual C++

  1. #include "entity2D.h"
  2. entity2D::entity2D()
  3. {
  4. mWidth = 0;
  5. mHeight = 0;
  6. mX = 0;
  7. mY = 0;
  8. }
  9. void entity2D::draw(HDC hDC)
  10. {
  11. }
  12. void entity2D::setDimensions(int width, int height)
  13. {
  14. mWidth = width;
  15. mHeight = height;
  16. }
  17. void entity2D::setPosition(int x, int y)
  18. {
  19. mX = x;
  20. mY = y;
  21. }
  22. void entity2D::setX(float valor)
  23. {
  24. mX = valor;
  25. }
  26. void entity2D::setY(float valor)
  27. {
  28. mY = valor;
  29. }
  30. int entity2D::getWidth()
  31. {
  32. return mWidth;
  33. }
  34. int entity2D::getHeight()
  35. {
  36. return mHeight;
  37. }
  38. float entity2D::getX()
  39. {
  40. return mX;
  41. }
  42. float entity2D::getY()
  43. {
  44. return mY;
  45. }