Exemple #1
0
 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;
 }
Exemple #3
0
 public NoteObject(long Tick, long Length, PitchAtomObject PitchValue)
 {
     this.pvp    = PitchValue;
     this.Tick   = Tick;
     this.Length = Length;
 }