lukaskubanek/LoremSwiftum

Add support for OS X

lukaskubanek opened this issue · 1 comments

#if os(OSX)
    import AppKit
    private typealias NSImage = LIImage
    private typealias NSSize = LISize
#elseif os(iOS)
    import UIKit
    private typealias UIImage = LIImage
    private typealias CGSize = LISize
#endif

Implemented in 8066b35