πInter-Mod Communication
Two or more than two mods talking to each other in Nitrocid
How to make a function publicly accessible?
ReadOnlyDictionary<string, Delegate> PubliclyAvailableFunctions { get; }public static object ExecuteCustomModFunction(string modName, string functionName)
public static object ExecuteCustomModFunction(string modName, string functionName, params object[] parameters)How can I make a property or a field publicly accessible?
ReadOnlyDictionary<string, PropertyInfo> PubliclyAvailableProperties { get; }
ReadOnlyDictionary<string, FieldInfo> PubliclyAvailableFields { get; }Listing functions, properties, and fields
Last updated