11 lines
169 B
Swift
11 lines
169 B
Swift
import Foundation
|
|
|
|
|
|
public protocol LoaderProtocol
|
|
{
|
|
associatedtype T: Resource
|
|
|
|
func load(url: URL) -> T?
|
|
func load(url: URL, content: inout ContentManager) -> T?
|
|
}
|