Files
yattee/Yattee/Extensions/PlatformImage.swift
2026-02-08 18:33:56 +01: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