java.lang.Object
com.csse3200.game.components.tasks.waves.Tuple

public class Tuple extends Object
This class represent a tuple of a String and an int which when used represent a mob name and health. This is used to reduce the amount of HashMaps and for simplicity and not confusing the data in the structure. It can be expanded to include more information if required.
  • Field Details

    • mob

      public String mob
    • health

      public int health
  • Constructor Details

    • Tuple

      public Tuple(String mob, int health)
  • Method Details