NoteEvent.NoteEvent C# (CSharp) Method

NoteEvent() public method

public NoteEvent ( long timestamp, int note )
timestamp long
note int
    public NoteEvent(long timestamp, int note)
        : base(timestamp)
    {
        Note = note;
    }
NoteEvent