powerup.hpp 367 B

1234567891011121314151617181920
  1. /* This file is part of Invaders.
  2. *
  3. * Copyright (C) 2020 LCM.
  4. * You may use, distribute and modify Invaders under the terms of the
  5. * GPLv3 license, available at <https://www.gnu.org/licenses/\>.
  6. */
  7. #ifndef _powerup_
  8. #define _powerup_
  9. #include "bullet.hpp"
  10. class powerup:public bullet{
  11. public:
  12. powerup(int x,int y);
  13. powerup(int x,int y,int ID);
  14. };
  15. #endif