mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
174 B
Swift
13 lines
174 B
Swift
@exported import SpriteKit
|
|
|
|
// SpriteKit defines SKColor using a macro.
|
|
|
|
#if os(OSX)
|
|
typealias SKColor = NSColor
|
|
#else
|
|
#if os(iOS)
|
|
typealias SKColor = UIColor
|
|
#endif
|
|
#endif
|
|
|