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