NScumm.Core.Audio.MidiChannel.SysExCustomInstrument C# (CSharp) 메소드

SysExCustomInstrument() 공개 추상적인 메소드

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

Usage Example

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