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

◆ PreHitWire()

static bool Terraria.ModLoader.TileLoader.PreHitWire ( int i,
int j,
int type )
inlinestatic

Definition at line 1098 of file TileLoader.cs.

1099 {
1101 for (int k = 0; k < hookPreHitWire.Length; k++)
1102 {
1103 if (!hookPreHitWire[k](i, j, type))
1104 {
1105 return false;
1106 }
1107 }
1108 return true;
1109 }
static Func< int, int, int, bool >[] HookPreHitWire

References Terraria.ModLoader.TileLoader.HookPreHitWire.

Referenced by Terraria.Wiring.HitWireSingle().

+ Here is the caller graph for this function: