Skip to content
Snippets Groups Projects
Select Git revision
  • 0559ac369439135372fab0951d416eafc86bd6ac
  • master default protected
2 results

task2.c

Blame
  • 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);
        }
    
    
    
    }