Beispiel #1
0
        public void Initialize()
        {
            Debug.LogFormat("IsHotfixDebugModeKey: {0}", this.IsHotfixDebugMode());

            if (IsHotfixDebugMode())
            {
                mApp = new HotfixApp_Reflect();
            }
            else
            {
                mApp = new HotfixApp_ILRT();
            }
        }
Beispiel #2
0
 public static object InvokeStatic(HotfixApp rApp, string rTypeName, string rMethodName, params object[] rArgs)
 {
     return(rApp.InvokeStatic(rTypeName, rMethodName, null, rArgs));
 }
Beispiel #3
0
 public HotfixObject(HotfixApp rApp, string rTypeName)
 {
     this.App      = rApp;
     this.TypeName = rTypeName;
 }