Class ShipUpgradesComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.ships.ShipUpgradesComponent
Represents the upgrades for ship
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionShipUpgradesComponent
(ShipUpgradesType type, short targetLayer) Assigns a type and targetLayer value to a given ShipUpgrade -
Method Summary
Modifier and TypeMethodDescriptionvoid
applyUpgrade
(Entity ship) Applies the effects of the Upgrade to the specified target entity, preferably a shipgetType()
Retrieves the type of the ShipUpgrades.void
setType
(ShipUpgradesType type) Sets the type of the ShipUpgrades.Methods inherited from class com.csse3200.game.components.Component
create, dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate, update
-
Constructor Details
-
ShipUpgradesComponent
Assigns a type and targetLayer value to a given ShipUpgrade
-
-
Method Details
-
applyUpgrade
Applies the effects of the Upgrade to the specified target entity, preferably a ship- Parameters:
ship
- - the ship to apply the upgrade to
-
getType
Retrieves the type of the ShipUpgrades.- Returns:
- The current ShipUpgrades type.
-
setType
Sets the type of the ShipUpgrades.- Parameters:
type
- The type to set.
-