File tree Expand file tree Collapse file tree 3 files changed +0
-8
lines changed
Expand file tree Collapse file tree 3 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,6 @@ public interface ISample : IAdjustableAudioComponent
1515 /// </summary>
1616 string Name { get ; }
1717
18- /// <summary>
19- /// The length in milliseconds of this <see cref="ISample"/>.
20- /// </summary>
21- double Length { get ; }
22-
2318 /// <summary>
2419 /// The number of times this sample (as identified by name) can be played back concurrently.
2520 /// </summary>
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ protected Sample(string name)
1919 Name = name ;
2020 }
2121
22- public double Length { get ; protected set ; }
2322 public Bindable < int > PlaybackConcurrency { get ; } = new Bindable < int > ( DEFAULT_CONCURRENCY ) ;
2423
2524 internal Action < Sample > OnPlay ;
Original file line number Diff line number Diff line change @@ -51,8 +51,6 @@ public SampleChannel GetChannel()
5151
5252 string ISample . Name => sample . Name ;
5353
54- public double Length => sample . Length ;
55-
5654 public Bindable < int > PlaybackConcurrency { get ; } = new Bindable < int > ( Sample . DEFAULT_CONCURRENCY ) ;
5755
5856 private IAudioMixer ? mixer ;
You can’t perform that action at this time.
0 commit comments