Continue moving to structured and shared AppAsset over separate AppAssets.

This commit is contained in:
Brent Simmons
2024-07-25 20:14:58 -07:00
parent 1660d77668
commit 440a7fbefa
36 changed files with 100 additions and 263 deletions

View File

@@ -0,0 +1,16 @@
//
// RSColor.swift
//
//
// Created by Brent Simmons on 7/9/24.
//
#if os(macOS)
import AppKit
public typealias RSColor = NSColor
#endif
#if os(iOS)
import UIKit
public typealias RSColor = UIColor
#endif