// Erika Wolfe, CSE 143 // Simple class to show off JFugue player // Must download JFugue and add to classpath for this // to work: http://www.jfugue.org/ import org.jfugue.pattern.Pattern; import org.jfugue.player.Player; public class MusicPlayerSimple { public static void main(String[] args) { Player player = new Player(); Pattern p = new Pattern("C D E F G A B C6"); player.play(p); } }