-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplication.java
More file actions
16 lines (13 loc) · 514 Bytes
/
Application.java
File metadata and controls
16 lines (13 loc) · 514 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import static de.damios.guacamole.gdx.StartOnFirstThreadHelper.startNewJvmIfRequired;
public class Application {
//private static final Window WINDOW = Window.getInstance();
private static final Main WINDOW = Main.getInstance();
public static void main(String[] args) {
// Starts a new JVM if the application was started on macOS without the
// -XstartOnFirstThread argument.
if (startNewJvmIfRequired()) {
System.exit(0);
}
WINDOW.run();
}
}