rocket.hpp 208 B

12345678910111213141516171819
  1. #ifndef _rocket_
  2. #define _rocket_
  3. #include "bullet.hpp"
  4. #include "definitions.hpp"
  5. class rocket : public bullet
  6. {
  7. public:
  8. rocket(int X,int Y,int V);
  9. ~rocket() {}
  10. void next_pos();
  11. int v;
  12. };
  13. #endif