Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819
  1. #ifndef PLAYER_H
  2. #define PLAYER_H
  3. #include "entity.h"
  4. #include "olcPGE_Common.h"
  5. namespace pabloader {
  6. class Player : public Entity {
  7. public:
  8. Player(Awoorwae* game);
  9. olc::rcode Load() override;
  10. void Update(float dt) override;
  11. void Draw() override;
  12. };
  13. }
  14. #endif