You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
409 B

2 years ago
  1. //
  2. // NibResource.swift
  3. // R.swift Library
  4. //
  5. // Created by Mathijs Kadijk on 06-12-15.
  6. // From: https://github.com/mac-cain13/R.swift.Library
  7. // License: MIT License
  8. //
  9. import Foundation
  10. /// Represents a nib file on disk
  11. public protocol NibResourceType {
  12. /// Bundle this nib is in or nil for main bundle
  13. var bundle: Bundle { get }
  14. /// Name of the nib file on disk
  15. var name: String { get }
  16. }