Files
CavesOfSwift/Sources/JolkEngine/Content/LoaderProtocol.swift

10 lines
111 B
Swift
Raw Normal View History

2024-05-05 17:01:56 +10:00
import Foundation
public protocol LoaderProtocol
{
associatedtype T: Resource
func load(url: URL) -> T?
}