Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223
  1. #ifndef BUG_H
  2. #define BUG_H
  3. #include "entity.h"
  4. namespace pabloader {
  5. class Bug : public Entity {
  6. public:
  7. Bug(Debuggers* game);
  8. void Update(float dt) override;
  9. void Draw() override;
  10. bool IsActive();
  11. void ResetPosition();
  12. void Kill();
  13. private:
  14. int kind = 0;
  15. float rotation = 0;
  16. int8_t rotationSpeed;
  17. };
  18. }
  19. #endif