Skip to content

Commit

Permalink
Removed unused mobIndex private variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
max9753 committed Oct 16, 2023
1 parent a1545af commit f2c1398
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
package com.csse3200.game.components.tasks.waves;


import com.csse3200.game.services.GameTime;


import java.util.*;

public class WaveClass {
private HashMap<String, int[]> entities;
private List<Tuple> wave;
private int mobIndex;

/**
* Constructor for the WaveClass
Expand All @@ -18,7 +13,6 @@ public class WaveClass {
public WaveClass(HashMap<String, int[]> entities) {
this.entities = entities;
this.wave = entitiesToWave();
this.mobIndex = 0;
}

/**
Expand Down

0 comments on commit f2c1398

Please sign in to comment.