예제 #1
0
파일: Track.cs 프로젝트: niksg/LDJam41
 private void MistimedCommand(TrackCommand command)
 {
     if (this.OnMistimed != null)
     {
         OnMistimed(this, command);
     }
     command.MistimedHit();
     PlaySound(false);
     this.TrackCommands.Remove(command);
 }