public NoteObject(long Tick, long Length, PitchAtomObject PitchValue, string Lyric) { this.pvp = PitchValue; this.Tick = Tick; this.Length = Length; this.Lyric = Lyric; }
public PitchObject(long Tick, PitchAtomObject PitchValue) { this.pvp = PitchValue; this.Tick = Tick; }
public NoteObject(long Tick, long Length, PitchAtomObject PitchValue) { this.pvp = PitchValue; this.Tick = Tick; this.Length = Length; }