説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

entity.h 564B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef ENTITY_H
  2. #define ENTITY_H
  3. #include "olcPGEX_Graphics2D.h"
  4. #include "olcPixelGameEngine.h"
  5. namespace pabloader {
  6. class Awoorwae;
  7. class Entity {
  8. protected:
  9. Awoorwae* game;
  10. olc::Sprite img;
  11. olc::GFX2D::Transform2D transform;
  12. float x, y;
  13. float xv, yv;
  14. int w, h;
  15. int tile = 0;
  16. int skin = 0;
  17. int tileCounter = 0;
  18. bool onGround = false;
  19. public:
  20. Entity(Awoorwae* game_);
  21. virtual ~Entity(){};
  22. virtual olc::rcode Load() = 0;
  23. virtual void Update(float dt) = 0;
  24. virtual void Draw() = 0;
  25. };
  26. }
  27. #endif