Skip to content

Commit

Permalink
Added launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
OrangoMango committed Jul 9, 2023
1 parent cb3af50 commit 21c728e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ tasks.withType(JavaCompile) {

application {
mainModule = 'com.orangomango.retoohs'
mainClass = 'com.orangomango.retoohs.MainApplication'
mainClass = 'com.orangomango.retoohs.Launcher'
}

javafx {
Expand Down
7 changes: 7 additions & 0 deletions src/main/java/com/orangomango/retoohs/Launcher.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.orangomango.retoohs;

public class Launcher{
public static void main(String[] args){
MainApplication.main(args);
}
}

0 comments on commit 21c728e

Please sign in to comment.