11 lines
271 B
Swift
11 lines
271 B
Swift
import Foundation
|
|
|
|
/// An absolute screen-space origin.
|
|
///
|
|
/// When set on a window, it overrides anchor/margin placement entirely — the
|
|
/// window appears at exactly these coordinates.
|
|
struct PHThemeWindowPoint: Decodable, Equatable {
|
|
let x: Double
|
|
let y: Double
|
|
}
|