Files
CavesOfSwift/Sources/JolkEngine/Content/LoaderProtocol.swift
2024-05-09 20:52:01 +10:00

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?
}