blob: 9d9d25c0edb6ff425cf5d769bbe89347cdcc103c (
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, MonitorID, get_available_monitors, get_primary_monitor};
mod ffi;
#[cfg(feature = "headless")]
mod headless;
#[cfg(feature = "window")]
mod window;
|