MidiPlayer.HandleNoteOn C# (CSharp) Method

HandleNoteOn() private method

private HandleNoteOn ( int channel, int note, int velocity ) : void
channel int
note int
velocity int
return void
    private void HandleNoteOn(int channel, int note, int velocity)
    {
        eventQueue.Enqueue(new MidiEventData() {
            eventType = MidiHelper.MidiChannelEvent.Note_On,
            channel = channel,
            note = note,
            velocity = velocity
        });
    }