init dump

This commit is contained in:
2024-05-05 17:01:56 +10:00
commit 608cf45822
53 changed files with 19224 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import Foundation
public protocol LoaderProtocol
{
associatedtype T: Resource
func load(url: URL) -> T?
}