#ifndef _rocket_ #define _rocket_ #include "bullet.hpp" #include "definitions.hpp" class rocket : public bullet { public: rocket(int X,int Y,int V); ~rocket() {} void next_pos(); int v; }; #endif