Class MazePlayer

java.lang.Object
com.csse3200.game.entities.Entity
com.csse3200.game.minigames.maze.entities.MazePlayer

public class MazePlayer extends Entity
MazePlayer represents the player entity in the maze mini-game. It defines the components and behavior specific to the player.
  • Constructor Details

    • MazePlayer

      public MazePlayer(MazePlayerConfig stats, MazeGameArea gameArea)
      Constructs a MazePlayer entity with the given player configuration stats.
      Parameters:
      stats - The configuration stats for the player entity, including health and attack power.
      gameArea - The maze game area the player is playing in.