public void Initialize() { Debug.LogFormat("IsHotfixDebugModeKey: {0}", this.IsHotfixDebugMode()); if (IsHotfixDebugMode()) { mApp = new HotfixApp_Reflect(); } else { mApp = new HotfixApp_ILRT(); } }
public static object InvokeStatic(HotfixApp rApp, string rTypeName, string rMethodName, params object[] rArgs) { return(rApp.InvokeStatic(rTypeName, rMethodName, null, rArgs)); }
public HotfixObject(HotfixApp rApp, string rTypeName) { this.App = rApp; this.TypeName = rTypeName; }