public CycleWeaponButton(Player player, IO.PlayerController controller) : base(player, controller)
 {
     shoot = player.GetAbility <ShootAbility>();
 }
Example #2
0
 public ShootButton(Player player, IO.PlayerController controller) : base(player, controller)
 {
     shoot = player.GetAbility <ShootAbility>();
     shoot.Init(player, controller);
 }