2018-09-17 10:07:32 +03:00
|
|
|
package ru.gravit.launcher;
|
|
|
|
|
|
|
|
public class AutogenConfig {
|
|
|
|
public String projectname;
|
|
|
|
public String address;
|
|
|
|
public int port;
|
2018-10-13 11:20:23 +03:00
|
|
|
public int clientPort;
|
2018-09-19 16:29:31 +03:00
|
|
|
private boolean isInitModules;
|
2018-10-08 16:57:29 +03:00
|
|
|
public String secretKeyClient;
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
AutogenConfig() {
|
|
|
|
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-19 16:53:27 +03:00
|
|
|
@SuppressWarnings("UnnecessaryReturnStatement")
|
2018-09-22 17:33:00 +03:00
|
|
|
public void initModules() {
|
|
|
|
if (isInitModules) return;
|
2018-09-19 16:29:31 +03:00
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|