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