Package javatest.game.entities

Examples of javatest.game.entities.ProximityMine


    // goals
    for (int i = 0; i < 5; i++)
      addEntity(new GoalEntity(this, rnd.nextInt(width), rnd
          .nextInt(height), i + 1), i * 300);

     addEntity( new ProximityMine(this, width/2, 50));
//     addEntity( new ProximityMine(this, width/2, 50));

     playerStart = new PlayerStart(this, 100, 100);
     addEntity(playerStart);
//     playerStart.createNewPlayer();
View Full Code Here

TOP

Related Classes of javatest.game.entities.ProximityMine

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.