pub enum NotePriority {
Last,
High,
Low,
}Expand description
Note priority is represented here
When more than one note is played at a time on a monophonic instrument, we need to decide which note takes priority.
-
Lastpriority means that whichever note was played most recently wins -
Highpriority means that whichever note is highest in pitch wins -
Lowpriority means that whichever note is lowest in pitch wins