|
| 1 | +const int Volume = 3; |
| 2 | + |
1 | 3 | await OutAsync( |
2 | 4 | new ControlBuilder() |
3 | | - .PlayNotes(3, 2, [1, 3, 5]) |
4 | | - .PlayNotes(3, 8, [6, 10, 8, 11]) |
5 | | - .PlayNotes(3, 4, [10, 11, 13, 10]) |
6 | | - .PlayNotes(3, 8, [8, 11]) |
7 | | - .PlayNotes(3, 4, [10, 11, 13, 10, 11, 13, 15, 17]) |
8 | | - .PlayNotes(3, 8, [18, 17, 18])); |
| 5 | + .PlayNotes(Volume, duration: 2, [1, 3, 5]) |
| 6 | + .PlayNotes(Volume, duration: 8, [6, 10, 8, 11]) |
| 7 | + .PlayNotes(Volume, duration: 4, [10, 11, 13, 10]) |
| 8 | + .PlayNotes(Volume, duration: 8, [8, 11]) |
| 9 | + .PlayNotes(Volume, duration: 4, [10, 11, 13, 10, 11, 13, 15, 17]) |
| 10 | + .PlayNotes(Volume, duration: 8, [18, 17, 18])); |
0 commit comments