Files
yattee/Yattee/Extensions/PlatformImage.swift
2026-04-18 20:37:24 +02:00

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