gitextract_5vekfhj0/ ├── .gitignore ├── .jazzy.yaml ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── Documentation/ │ ├── Classes/ │ │ └── FPSCounter.html │ ├── Classes.html │ ├── Protocols/ │ │ └── FPSCounterDelegate.html │ ├── Protocols.html │ ├── css/ │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets/ │ │ ├── .docset/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ ├── Documents/ │ │ │ │ ├── Classes/ │ │ │ │ │ └── FPSCounter.html │ │ │ │ ├── Classes.html │ │ │ │ ├── Protocols/ │ │ │ │ │ └── FPSCounterDelegate.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── css/ │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── index.html │ │ │ │ ├── js/ │ │ │ │ │ └── jazzy.js │ │ │ │ └── undocumented.txt │ │ │ └── docSet.dsidx │ │ ├── .tgz │ │ ├── FPSCounter.docset/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ ├── Documents/ │ │ │ │ ├── Classes/ │ │ │ │ │ └── FPSCounter.html │ │ │ │ ├── Classes.html │ │ │ │ ├── Protocols/ │ │ │ │ │ └── FPSCounterDelegate.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── css/ │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── index.html │ │ │ │ ├── js/ │ │ │ │ │ └── jazzy.js │ │ │ │ ├── search.json │ │ │ │ ├── undocumented.json │ │ │ │ └── undocumented.txt │ │ │ └── docSet.dsidx │ │ └── FPSCounter.tgz │ ├── index.html │ ├── js/ │ │ └── jazzy.js │ ├── search.json │ ├── undocumented.json │ └── undocumented.txt ├── FPSCounter.podspec ├── FPSCounter.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── FPSCounter.xcscheme │ └── Sample App.xcscheme ├── LICENSE ├── Package.swift ├── Readme.md ├── SampleApp/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── TableViewController.swift └── Sources/ ├── FPSCounter.h ├── FPSCounter.swift ├── FPSStatusBarViewController.swift ├── FPSStatusBarWindow.swift └── Info.plist