123456789101112131415161718192021222324252627 |
- /* 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 <https://www.gnu.org/licenses/\>.
- */
- #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
|