Ejemplo n.º 1
0
 public NoteObject(long Tick, long Length, PitchAtomObject PitchValue, string Lyric)
 {
     this.pvp    = PitchValue;
     this.Tick   = Tick;
     this.Length = Length;
     this.Lyric  = Lyric;
 }
Ejemplo n.º 2
0
 public PitchObject(long Tick, PitchAtomObject PitchValue)
 {
     this.pvp  = PitchValue;
     this.Tick = Tick;
 }
Ejemplo n.º 3
0
 public NoteObject(long Tick, long Length, PitchAtomObject PitchValue)
 {
     this.pvp    = PitchValue;
     this.Tick   = Tick;
     this.Length = Length;
 }