blob: 09ce810ccddbc5f1c1bd7dd8eaa68317c514d65d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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.3-Alpha";
public static boolean enableOldGTcircuits = false;
public static List<?> DEPENDENCIES = new ArrayList<>(Arrays.asList(new String[] {"required-before:gregtech;"}));
}
|