Nessuna descrizione
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 154B

12345678910111213
  1. #ifndef BONUS_H
  2. #define BONUS_H
  3. #include "entity.h"
  4. namespace pabloader {
  5. class Bonus : public Entity {
  6. public:
  7. Bonus(Debuggers* game);
  8. };
  9. }
  10. #endif