Example #1
0
 public static void Reset(string[] unloads)
 {
     UnloadAll(false, unloads);
     loadingBundles.Clear();
     ttlSettings.Clear();
     ttlPatternSettings.Clear();
     noTTLSettings.Clear();
     bundleDeps.ReloadManifest();
 }
Example #2
0
 static public int ReloadManifest(IntPtr l)
 {
     try {
         LBoot.BundleDependencies self = (LBoot.BundleDependencies)checkSelf(l);
         self.ReloadManifest();
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }