Geen omschrijving
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.

bonus.h 313B

12345678910111213141516171819202122
  1. #ifndef BONUS_H
  2. #define BONUS_H
  3. #include "entity.h"
  4. namespace pabloader {
  5. enum BonusType {
  6. BONUS_DOCUMENTATION = 0,
  7. BONUS_UNIT_TEST = 1,
  8. BONUS_DEBUGGER = 2
  9. };
  10. class Bonus : public Entity {
  11. public:
  12. Bonus(Debuggers* game);
  13. BonusType GetType();
  14. void ResetPosition() override;
  15. };
  16. }
  17. #endif