Class InventoryDisplayComponent

All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable, Renderable, Comparable<Renderable>

public class InventoryDisplayComponent extends UIComponent
Represents the display component for the player's inventory in the game. This component provides UI elements to display weapons equipped by the player, allowing players to see and change their currently equipped weapon.
  • Constructor Details

    • InventoryDisplayComponent

      public InventoryDisplayComponent()
      Initialises the inventory display. Listens for weapon changes and updates currently equipped weapon display.
  • Method Details

    • create

      public void create()
      Creates UI styles and adds actors to the stage.
      Overrides:
      create in class UIComponent
    • draw

      protected void draw(com.badlogic.gdx.graphics.g2d.SpriteBatch batch)
      Draws the component. This is handled by the stage.
      Specified by:
      draw in class RenderComponent
      Parameters:
      batch - The sprite batch used for drawing.