Class AttackFactory

java.lang.Object
com.csse3200.game.entities.factories.AttackFactory

public class AttackFactory extends Object
Class to create weapons when the player attacks
  • Method Details

    • createAttacks

      public static ArrayList<Entity> createAttacks(WeaponType weaponType, float attackDirection, Entity player)
      function to generate multiple attacks in a sequence attack
      Parameters:
      weaponType -
      attackDirection -
      player -
      Returns:
    • createAttack

      public static Entity createAttack(WeaponConfig config, float attackDirection, Entity player, int attackNum)
      Static function to create a new weapon entity
      Parameters:
      config - config to weapon to create
      attackDirection - - the initial rotation of the player
      player - - the player using this attack
      attackNum - - the number of the attack in the sequence
      Returns:
      A reference to the created weapon entity