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