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

◆ KillTile()

static void Terraria.ModLoader.TileLoader.KillTile ( int i,
int j,
int type,
ref bool fail,
ref bool effectOnly,
ref bool noItem )
inlinestatic

Definition at line 684 of file TileLoader.cs.

685 {
686 GetTile(type)?.KillTile(i, j, ref fail, ref effectOnly, ref noItem);
688 for (int k = 0; k < hookKillTile.Length; k++)
689 {
691 }
692 }
static ModTile GetTile(int type)
Gets the ModTile instance with the given type. If no ModTile with the given type exists,...
delegate void DelegateKillTile(int i, int j, int type, ref bool fail, ref bool effectOnly, ref bool noItem)
static DelegateKillTile[] HookKillTile
Definition TileLoader.cs:79

References Terraria.ModLoader.TileLoader.DelegateKillTile(), Terraria.ModLoader.TileLoader.GetTile(), and Terraria.ModLoader.TileLoader.HookKillTile.

Referenced by Terraria.WorldGen.KillTile().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: