![JAR search and dependency download from the Maven repository](/logo.png)
org.ggp.base.util.configuration.ProjectConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alloy-ggp-base Show documentation
Show all versions of alloy-ggp-base Show documentation
A modified version of the GGP-Base library for Alloy.
The newest version!
/**
* ProjectConfiguration handles the project-specific directory settings.
* This class stores the paths of the game directory so it can quickly be changed and overridden.
*
* @author Sam Schreiber
*/
package org.ggp.base.util.configuration;
import java.io.File;
public class ProjectConfiguration {
/* Game rulesheet repository information */
private static final String gamesRootDirectoryPath = "games";
public static final File gameImagesDirectory = new File(new File(gamesRootDirectoryPath, "resources"), "images");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy