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

◆ Call()

virtual object Terraria.ModLoader.Mod.Call ( params object[] args)
inlinevirtualinherited

Used for weak inter-mod communication. This allows you to interact with other mods without having to reference their types or namespaces, provided that they have implemented this method.
The Expert Cross Mod Content Guideexplains how to use this hook to implement and utilize cross-mod capabilities.

Definition at line 355 of file Mod.cs.

356 {
357 return null;
358 }