Class CostComponent

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.structures.CostComponent
All Implemented Interfaces:
Placeable

public class CostComponent extends Component implements Placeable
Used to charge the player resources when a structure is placed and refund the player resources when a structure is picked up.
  • Constructor Details

    • CostComponent

      public CostComponent(com.badlogic.gdx.utils.ObjectMap<String,Integer> cost)
      Creates a new CostComponent with the given cost.
      Parameters:
      cost - - the cost to charge the player when placed.
  • Method Details

    • placed

      public void placed()
      Charges the player the specified cost of the structure.
      Specified by:
      placed in interface Placeable
    • removed

      public void removed()
      Refunds the player the specified cost of the structure proportional to the percentage of health remaining.
      Specified by:
      removed in interface Placeable