//! Core Graphics types for screen coordinates and dimensions
//!
//! This module provides Rust equivalents of Core Graphics types used in
//! `ScreenCaptureKit` for representing screen coordinates, sizes, and rectangles.
pub use CGPoint;
pub use CGRect;
pub use CGSize;
/// `CGDisplayID` type alias
pub type CGDisplayID = u32;