blob: b8ebdaf49cbf7f81447045867f1bc4521c4fc689 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package gtPlusPlus.preloader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class CORE_Preloader {
public static final String NAME = "GT++ Preloader";
public static final String MODID = "GT++_Preloader";
public static final String VERSION = "0.4-Beta";
public static boolean enableOldGTcircuits = false;
public static int enableWatchdogBGM = 0;
public static List<?> DEPENDENCIES = new ArrayList<>(Arrays.asList(new String[] {"required-before:gregtech;"}));
}
|