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 |
- #ifndef PLAYER_H
- #define PLAYER_H
-
- #include "entity.h"
- #include "olcPGE_Common.h"
-
- namespace pabloader {
-
- class Player : public Entity {
- public:
- Player(Awoorwae* game);
- olc::rcode Load() override;
- void Update(float dt) override;
- void Draw() override;
- };
-
- }
-
- #endif
|