/* This file is part of Invaders. * * Copyright (C) 2020 LCM. * You may use, distribute and modify Invaders under the terms of the * GPLv3 license, available at . */ #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