NScumm.Core.Audio.SoftSynth.AdlibMidiDriver.AdLibPart.NoteOn C# (CSharp) Method

NoteOn() public method

public NoteOn ( byte note, byte velocity ) : void
note byte
velocity byte
return void
            public override void NoteOn(byte note, byte velocity)
            {
                _owner.PartKeyOn(this, _partInstr, note, velocity,
                    #if ENABLE_OPL3
                    _partInstrSecondary,
                    #else
                    null,
                    #endif
                    _pan);
            }