Select Git revision
SuperTank.java
SuperTank.java 367 B
package lists;
import bagel.Input;
import bagel.util.Point;
public class SuperTank extends Tank{
public SuperTank(Point point, String imageSrc){
super(point,imageSrc);
this.radius = 150;
this.damage = 1;
this.cooldown = 500;
}
@Override
public void update(Input input) {
super.update(input);
}
}