├── .gitignore ├── LICENSE ├── README.md ├── SmudgeKit.podspec └── Source-ObjectiveC ├── SmudgyWindow.h └── SmudgyWindow.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ideon/SmudgeKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ideon/SmudgeKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ideon/SmudgeKit/HEAD/README.md -------------------------------------------------------------------------------- /SmudgeKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ideon/SmudgeKit/HEAD/SmudgeKit.podspec -------------------------------------------------------------------------------- /Source-ObjectiveC/SmudgyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ideon/SmudgeKit/HEAD/Source-ObjectiveC/SmudgyWindow.h -------------------------------------------------------------------------------- /Source-ObjectiveC/SmudgyWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ideon/SmudgeKit/HEAD/Source-ObjectiveC/SmudgyWindow.m --------------------------------------------------------------------------------