1234567891011121314151617181920 |
- /* 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 _powerup_
- #define _powerup_
- #include "bullet.hpp"
- class powerup:public bullet{
- public:
- powerup(int x,int y);
- powerup(int x,int y,int ID);
- };
- #endif
|