implement Launcher.java

This commit is contained in:
2026-05-27 11:27:23 -07:00
parent 92a4c34d48
commit e6fb142e41
+3 -1
View File
@@ -4,5 +4,7 @@ import javafx.application.Application;
public class Launcher{ public class Launcher{
public static void main(String[] args) { public static void main(String[] args) {
// TODO: Launch the JavaFX application by calling Application.launch(Main.class) }
Application.launch(MusicApp.class);
}
} }