Package battleTank

Examples of battleTank.Arena1


  public NetworkTankController(MasterView m, int i) {
    this.m = m;
    this.i = i;
    playerScore = 0;
    enemyScore = 0;
    map = new Arena1();
    obstacleList = new LinkedList<Obstacle>();
    for(int j = 0; j < map.getObstacles().size(); j++) {
      Obstacle o = map.getObstacles().get(j);
      addObstacle(o);
    }
View Full Code Here

TOP

Related Classes of battleTank.Arena1

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.