2025-01-18 00:18:11 +01:00
|
|
|
import Foundation
|
|
|
|
|
2025-01-18 19:52:40 +01:00
|
|
|
public protocol Bundleable {
|
2025-01-24 23:52:30 +01:00
|
|
|
|
|
|
|
// MARK: Computed
|
|
|
|
|
|
|
|
var resourcePath: String? { get }
|
2025-01-18 00:18:11 +01:00
|
|
|
|
|
|
|
// MARK: Functions
|
|
|
|
|
|
|
|
func url(forResource name: String?, withExtension ext: String?, subdirectory subpath: String?) -> URL?
|
|
|
|
|
|
|
|
}
|