powerup.hpp 162 B

123456789101112
  1. #ifndef _powerup_
  2. #define _powerup_
  3. #include "bullet.hpp"
  4. class powerup:public bullet{
  5. public:
  6. powerup(int x,int y);
  7. powerup(int x,int y,int ID);
  8. };
  9. #endif