Tuning.java (114B)
1 package com.github.cythara; 2 3 public interface Tuning { 4 5 Note[] getNotes(); 6 7 Note findNote(String name); 8 }