Example #1
0
 private static void Postfix()
 {
     ModManager.DoStep(PipMod.Step.PostInitialize);
 }
Example #2
0
            // This happens at the end of Global.Awake
            // Since we can't patch what's currently in the call stack, this will have to do

            private static void Postfix()
            {
                ModManager.InstanciateAll();
                ModManager.DoStep(PipMod.Step.Load);
                ModManager.DoStep(PipMod.Step.PostLoad);
            }
Example #3
0
 private static void Prefix()
 {
     ModManager.DoStep(PipMod.Step.PreInitialize);
 }