blob: 9ce789f7314bb859f1c3e21aa69d54485f8bfa31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#[cfg(feature = "headless")]
pub use self::headless::HeadlessContext;
#[cfg(feature = "window")]
pub use self::window::{Window, WindowProxy, MonitorID, get_available_monitors, get_primary_monitor};
mod ffi;
#[cfg(feature = "headless")]
mod headless;
#[cfg(feature = "window")]
mod window;
|