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