NScumm.Core.Audio.MidiChannel.SysExCustomInstrument C# (CSharp) Méthode

SysExCustomInstrument() public abstract méthode

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

Usage Example

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