Class CostComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.structures.CostComponent
- All Implemented Interfaces:
Placeable
Used to charge the player resources when a structure is placed and refund
the player resources when a structure is picked up.
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionCostComponent
(com.badlogic.gdx.utils.ObjectMap<String, Integer> cost) Creates a new CostComponent with the given cost. -
Method Summary
Methods inherited from class com.csse3200.game.components.Component
create, dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate, update
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.csse3200.game.components.structures.Placeable
willPlace, willRemove
-
Constructor Details
-
CostComponent
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. -
removed
public void removed()Refunds the player the specified cost of the structure proportional to the percentage of health remaining.
-