powerup.cpp 331 B

12345678910111213
  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. #include "powerup.hpp"
  8. powerup::powerup(int x,int y):bullet(x,y,64){}
  9. powerup::powerup(int x,int y,int ID):bullet(x,y,ID){}