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

◆ AI()

static void Terraria.ModLoader.ProjectileLoader.AI ( Projectile projectile)
inlinestatic

Definition at line 282 of file ProjectileLoader.cs.

283 {
284 projectile.ModProjectile?.AI();
285 EntityGlobalsEnumerator<GlobalProjectile> enumerator = HookAI.Enumerate(projectile).GetEnumerator();
286 while (enumerator.MoveNext())
287 {
288 enumerator.Current.AI(projectile);
289 }
290 }
static GlobalHookList< GlobalProjectile > HookAI

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

Referenced by Terraria.ModLoader.ProjectileLoader.ProjectileAI().

+ Here is the caller graph for this function: