Package wolf.util

Examples of wolf.util.Log


  public Statistics statistics;
  public Log log;
 

  public City(int sizeX, int sizeY, long seed){
    log = new Log();
    this.sizeX = sizeX;
    this.sizeY = sizeY;
    random = new Random(seed);
    for(int i=0; i<10; i++){ //warm up the random number generator
      random.nextDouble();
View Full Code Here

TOP

Related Classes of wolf.util.Log

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.