Skip to content

Commit

Permalink
Working sound
Browse files Browse the repository at this point in the history
  • Loading branch information
jesse-wei committed Nov 26, 2023
1 parent e984ee5 commit ebcc99f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/comp541/Main2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.comp541;

import org.jfugue.player.Player;

public class Main2 {
public static void main(String[] args) {
Player player = new Player();
player.play("C D E F G A B");
}
}
1 change: 1 addition & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
requires javafx.controls;
requires javafx.fxml;
requires org.json;
requires jfugue;
exports com.comp541.GUI;
opens com.comp541.GUI to javafx.fxml;
exports com.comp541;
Expand Down

0 comments on commit ebcc99f

Please sign in to comment.