26 lines
362 B
Swift
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
|