Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
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
|