示例#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);
 }