Пример #1
0
        public ILRuntimeHotFix(IAppILRuntime app)
        {
            this.SetOwner(app);

            ILAppDomain  = new AppDomain();
            MethodCacher = new ILMethodCacher();
        }
Пример #2
0
    public override void EnterGameHandler()
    {
        base.EnterGameHandler();

        "log".Log("Game Entered");

        IAppILRuntime app = ShipDockApp.Instance;

        app.SetHotFixSetting(new ILRuntimeHotFix(app), new AppHotFixConfigBase());

        ElimConsts.UIM_ELIM_UI.LoadAndOpenUI <UIElimModular>(OnCreateBoard, ElimConsts.AB_ELIM_UI);
    }
Пример #3
0
 public static void ClearGlobal(this ILRuntimeHotFix target)
 {
     appDomain    = default;
     methodCacher = default;
     ownerApp     = default;
 }
Пример #4
0
 public static void SetOwner(this ILRuntimeHotFix target, IAppILRuntime app)
 {
     ownerApp = app;
 }