Files
CavesOfSwift/Sources/JolkEngine/Content/LoaderProtocol.swift
2024-05-05 17:01:56 +10:00

10 lines
111 B
Swift

import Foundation
public protocol LoaderProtocol
{
associatedtype T: Resource
func load(url: URL) -> T?
}