26 lines
403 B
Java
26 lines
403 B
Java
package electrosphere.cfg;
|
|
|
|
/**
|
|
*
|
|
* @author satellite
|
|
*/
|
|
|
|
//Main configuration file for application
|
|
public class MainConfig {
|
|
//Main directory of project resources
|
|
public String projectMainDirectory;
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
//Terrain
|
|
//
|
|
|
|
//Do we load terrain?
|
|
public boolean loadTerrain;
|
|
//If load terrain, where from?
|
|
public String loadTerrainLocation;
|
|
}
|