mirror of
https://github.com/yattee/yattee.git
synced 2026-02-19 17:29:45 +00:00
15 lines
203 B
Swift
15 lines
203 B
Swift
//
|
|
// PlatformImage.swift
|
|
// Yattee
|
|
//
|
|
// Cross-platform image typealias.
|
|
//
|
|
|
|
#if os(macOS)
|
|
import AppKit
|
|
typealias PlatformImage = NSImage
|
|
#else
|
|
import UIKit
|
|
typealias PlatformImage = UIImage
|
|
#endif
|