ThreeFigureMinuetThing.java
1    package mmw;
2    //Playing notes without the composer from ThreefigTest
3    import note.SNote;
4    
5    public class ThreeFigureMinuetThing {
6        public static void main (String[] args) {
7            SNote Bumblebee = new SNote();
8            Bumblebee.text();
9            Bumblebee.play();
10           Bumblebee.s2(1);
11           // Keeps the note the same but changes duration
12           Bumblebee.x2();
13           Bumblebee.lp();
14           Bumblebee.play();
15           Bumblebee.lp();
16           Bumblebee.play();
17           Bumblebee.rest();
18           //Figure out how to indent line/ rest it
19           Bumblebee.s2();
20           Bumblebee.rp(2);
21           Bumblebee.play();
22           Bumblebee.lp(1);
23           Bumblebee.play();
24           Bumblebee.lp();
25           Bumblebee.play();
26           Bumblebee.rp();
27           Bumblebee.play();
28           Bumblebee.rp();
29           Bumblebee.x2();
30           Bumblebee.play();
31           Bumblebee.rest();
32   //Figure out how to indent line/ rest it
33           Bumblebee.x3();
34           Bumblebee.play();
35   
36   
37       }
38   }
39