예제 #1
0
파일: Note.cs 프로젝트: joha4270/AAU-P2
		public NoteOnOff(Pitch pitch, int velocity, float time, float duration, int channel = 0) : base(pitch, velocity, time, MessageType.On, channel)
		{
			Chain = new NoteOff(pitch, velocity, time + duration, channel);
		}
예제 #2
0
파일: Note.cs 프로젝트: Rumu11/AAU-P2
 public NoteOnOff(Pitch pitch, int velocity, float time, float duration, int channel = 0) : base(pitch, velocity, time, MessageType.On, channel)
 {
     Chain = new NoteOff(pitch, velocity, time + duration, channel);
 }