Package com.echoeight.tankd.entity

Examples of com.echoeight.tankd.entity.Wall


        return delta;
    }
   
  public void drawLevel(){
    for(int i=55;i<HEIGHT;i+=20){
      walls.add(new Wall(em,10,i,20,20));
    }
    for(int i=45;i<HEIGHT;i+=20){
      walls.add(new Wall(em,WIDTH-10,i+10,20,20));
    }
    for(int i=0;i<WIDTH;i+=20){
      walls.add(new Wall(em,i,55,20,20));
    }
    for(int i=0;i<WIDTH;i+=20){
      walls.add(new Wall(em,i,HEIGHT-10,20,20));
    }
  }
View Full Code Here

TOP

Related Classes of com.echoeight.tankd.entity.Wall

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.