#[cfg(target_os = "windows")] mod windows; #[cfg(target_os = "linux")] mod linux; #[cfg(target_os = "macos")] pub(crate) mod macos; use std::sync::mpsc::Sender; use crate::event::Event; pub trait Context { fn eventloop(&self); } // MAC IMPLEMENTATION #[cfg(target_os = "macos")] pub fn new(send_channel: Sender) -> Box { macos::MacContext::new(send_channel) } // LINUX IMPLEMENTATION #[cfg(target_os = "linux")] pub fn new(send_channel: Sender) -> Box { linux::LinuxContext::new(send_channel) } // WINDOWS IMPLEMENTATION #[cfg(target_os = "windows")] pub fn new(send_channel: Sender) -> Box { windows::WindowsContext::new(send_channel) }