NetNewsWire/Core/Sources/Core/RSScreen.swift
2024-03-22 10:11:40 -07:00

26 lines
362 B
Swift

//
// RSScreen.swift
// RSCore
//
// Created by Maurice Parker on 4/11/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
#if os(macOS)
import AppKit
public class RSScreen {
public static let maxScreenScale = CGFloat(2)
}
#endif
#if os(iOS)
import UIKit
public class RSScreen {
public static let maxScreenScale = CGFloat(3)
}
#endif