NScumm.Core.Audio.MidiChannel.SysExCustomInstrument C# (CSharp) Method

SysExCustomInstrument() public abstract method

public abstract SysExCustomInstrument ( uint type, byte instr ) : void
type uint
instr byte
return void
        public abstract void SysExCustomInstrument(uint type, byte[] instr);
    }

Usage Example

Example #1
0
 public void Send(MidiChannel mc)
 {
     mc.SysExCustomInstrument(AdlibMidiDriver.ToType("ADL "), _instrument);
 }