123456789101112131415161718192021 |
- #ifndef BUG_H
- #define BUG_H
-
- #include "entity.h"
-
- namespace pabloader {
- class Bug : public Entity {
- public:
- Bug(Debuggers* game);
- void Update(float dt) override;
- void Draw() override;
- bool IsActive();
- void ResetPosition();
- void Kill();
-
- private:
- int kind = 0;
- };
- }
-
- #endif
|