Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelCz committed Apr 6, 2014
1 parent c13755c commit 84d1e4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/engine/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ private void initDefaults() {

private void initWaves() {
this.waveHandler.addWave(new Wave(1, new int[] { 100 }));
// this.waveHandler.addWave(new Wave(3, new int[] { 100 }));
// this.waveHandler.addWave(new Wave(4, new int[] { 100 }));
// this.waveHandler.addWave(new Wave(5, new int[] { 100 }));
// this.waveHandler.addWave(new Wave(6, new int[] { 100 }));
this.waveHandler.addWave(new Wave(3, new int[] { 100 }));
this.waveHandler.addWave(new Wave(4, new int[] { 100 }));
this.waveHandler.addWave(new Wave(5, new int[] { 100 }));
this.waveHandler.addWave(new Wave(6, new int[] { 100 }));
}

private void initGUI() {
Expand Down

0 comments on commit 84d1e4e

Please sign in to comment.