blob: 0885994d338589b456f5dde7f85b1062c204c844 (
plain)
1
2
3
4
5
|
// All sources should comply with this protocol. The currentTrack computed
// property will return a track if the conditions are met
protocol Source {
var currentTrack: Track? { get }
}
|