blob: d5c7a7e4e5316fe855ca27f7364369f5e23ac288 (
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
32
33
34
|
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){
}
}
}
|