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

11 lines
169 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?
2024-05-09 20:52:01 +10:00
func load(url: URL, content: inout ContentManager) -> T?
2024-05-05 17:01:56 +10:00
}