Exemplo n.º 1
0
 public Object clone() {
   GameConfig r = new GameConfig(this.confFileName);
   r.num_lights = this.num_lights;
   r.num_collectors = this.num_collectors;
   r.num_mosquitos = this.num_mosquitos;
   r.number_of_rounds = this.number_of_rounds;
   r.max_rounds = this.max_rounds;
   r.selectedBoard = this.selectedBoard;
   r.playerClass = this.playerClass;
   r.boardFile = this.boardFile;
   return r;
 }