... to make it available to the test classes. The tests actually do not need it. However, it is used in the test data generator. In the future, we should move the devtools to the test source folder and removed the extra devtools source folder to prevent stuff like this.
17 lines
437 B
Java
17 lines
437 B
Java
package amidst.devtools;
|
|
|
|
public enum DevToolsSettings {
|
|
INSTANCE;
|
|
|
|
private String minecraftVersionsDirectory = "/home/stefan/.minecraft/amidst-all-client-versions/";
|
|
private String minecraftLibrariesDirectory = "/home/stefan/.minecraft/libraries/";
|
|
|
|
public String getMinecraftVersionsDirectory() {
|
|
return minecraftVersionsDirectory;
|
|
}
|
|
|
|
public String getMinecraftLibrariesDirectory() {
|
|
return minecraftLibrariesDirectory;
|
|
}
|
|
}
|