Skip to content
Snippets Groups Projects
Select Git revision
  • 6877c0650f997d6f242360ccfe9719c7573c6709
  • master default protected
2 results

config.py

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