├── .gitignore ├── Contents.swift ├── LICENSE ├── README.md ├── Rakefile ├── Resources └── trollface.jpg └── Sources ├── Person.swift ├── Sharing.swift └── TrollController.swift /.gitignore: -------------------------------------------------------------------------------- 1 | *.playground 2 | -------------------------------------------------------------------------------- /Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2/TrollDropPlayground/HEAD/Contents.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2/TrollDropPlayground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2/TrollDropPlayground/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2/TrollDropPlayground/HEAD/Rakefile -------------------------------------------------------------------------------- /Resources/trollface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2/TrollDropPlayground/HEAD/Resources/trollface.jpg -------------------------------------------------------------------------------- /Sources/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2/TrollDropPlayground/HEAD/Sources/Person.swift -------------------------------------------------------------------------------- /Sources/Sharing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2/TrollDropPlayground/HEAD/Sources/Sharing.swift -------------------------------------------------------------------------------- /Sources/TrollController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2/TrollDropPlayground/HEAD/Sources/TrollController.swift --------------------------------------------------------------------------------