blob: 1cbf4a4787b6393901ae0743e4970965d3309ac2 (
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) {}
}
}
|