Added the "resourcePath" property to the Bundleable protocol in the library target.

This commit is contained in:
Javier Cicchelli 2025-01-24 23:52:30 +01:00
parent 7dfddb8d4c
commit 8bc446ca68

View File

@ -2,6 +2,10 @@ import Foundation
public protocol Bundleable {
// MARK: Computed
var resourcePath: String? { get }
// MARK: Functions
func url(forResource name: String?, withExtension ext: String?, subdirectory subpath: String?) -> URL?