TModLoader v1.4.4.9
TModLoader source code documentation
Loading...
Searching...
No Matches

◆ NumGrappleHooks()

static void Terraria.ModLoader.ProjectileLoader.NumGrappleHooks ( Projectile projectile,
Player player,
ref int numHooks )
inlinestatic

Definition at line 787 of file ProjectileLoader.cs.

788 {
789 projectile.ModProjectile?.NumGrappleHooks(player, ref numHooks);
790 EntityGlobalsEnumerator<GlobalProjectile> enumerator = HookNumGrappleHooks.Enumerate(projectile).GetEnumerator();
791 while (enumerator.MoveNext())
792 {
793 enumerator.Current.NumGrappleHooks(projectile, player, ref numHooks);
794 }
795 }
static GlobalHookList< GlobalProjectile > HookNumGrappleHooks

References Terraria.ModLoader.ProjectileLoader.HookNumGrappleHooks, and Terraria.Projectile.ModProjectile.

Referenced by Terraria.Projectile.AI_007_GrapplingHooks().

+ Here is the caller graph for this function: