Пример #1
0
 public DrumStart(DrumPitch drumPitch, int velocity) : base(drumPitch)
 {
     this.Velocity = velocity;
 }
Пример #2
0
 public Drum(DrumPitch d, double noteLength, int velocity) :
     base(new DrumStart(d, velocity), new DrumEnd(d), noteLength)
 {
 }
Пример #3
0
 public DrumEnd(DrumPitch drumPitch)
 {
     this.DrumPitch = drumPitch;
 }