Files
phbar/Sources/phbar/Models/PHTheme/PHThemeWindow/PHThemeWindowPoint.swift
T
2026-07-12 15:06:51 +02:00

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
}