MidiPlayer.TriggerNoteOn C# (CSharp) Method

TriggerNoteOn() private method

private TriggerNoteOn ( int channel, int note, int velocity ) : void
channel int
note int
velocity int
return void
    private void TriggerNoteOn(int channel, int note, int velocity)
    {
        if (OnNoteOn != null) OnNoteOn(channel, note, velocity);
    }