import net.knarcraft.serverlauncher.server.*; import net.knarcraft.serverlauncher.userinterface.GUI; import javax.naming.ConfigurationException; //Java 9 required. /** * A software for managing Minecraft servers. * * @author Kristian Knarvik * @version 0.0.0.1 * @since 0.0.0.1 */ @SuppressWarnings("SpellCheckingInspection") class Main { public static void main(String[] args) { setup(); new GUI(); } private static void setup() { try { ServerType.loadServerTypes(); } catch (ConfigurationException e) { e.printStackTrace(); System.exit(1); } } // TODO: Add gui functionality }