All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.scs2.sessionVisualizer.sliderboard.MidiChannelConfig Maven / Gradle / Ivy

There is a newer version: 17-0.27.3
Show newest version
package us.ihmc.scs2.sessionVisualizer.sliderboard;

public interface MidiChannelConfig
{
   public int getChannel();

   default int getMin()
   {
      throw new RuntimeException("No min implemented");
   }

   default int getMax()
   {
      throw new RuntimeException("No max implemented");
   }

   public int ordinal();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy