use core::ffi::c_void;
use core::ptr::NonNull;
#[non_exhaustive]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct OrbitalDisplayHandle {}
impl OrbitalDisplayHandle {
pub fn new() -> Self {
Self {}
}
}
#[non_exhaustive]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct OrbitalWindowHandle {
pub window: NonNull<c_void>,
}
impl OrbitalWindowHandle {
pub fn new(window: NonNull<c_void>) -> Self {
Self { window }
}
}