blob: 5957cfc89dc7294f2ae054058ba28cbe2a3d7c0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package gtPlusPlus.xmod.galacticraft;
import gtPlusPlus.core.lib.LoadedMods;
public class HANDLER_GalactiCraft {
// private static final HashMap<String, BaseSolarSystem> mSystemsCache = new HashMap<String, BaseSolarSystem>();
public static void preInit() {
if (LoadedMods.GalacticraftCore) {
// mSystemsCache.put("HD10180", new SystemHD10180());
/*for (BaseSolarSystem solar : mSystemsCache.values()) {
Logger.SPACE("Running 'pre-init' for "+solar.mSystemName);
solar.preInit();
}*/
}
}
public static void init() {
if (LoadedMods.GalacticraftCore) {
/*for (BaseSolarSystem solar : mSystemsCache.values()) {
Logger.SPACE("Running 'init' for "+solar.mSystemName);
solar.init();
}*/
}
}
public static void postInit() {
if (LoadedMods.GalacticraftCore) {}
}
}
|