Files
winit/src/os/mod.rs
Francesca Frangipane 1b74822cfc DPI for everyone (#548)
2018-06-14 19:42:18 -04:00

18 lines
358 B
Rust

//! Contains traits with platform-specific methods in them.
//!
//! Contains the follow modules:
//!
//! - `android`
//! - `ios`
//! - `macos`
//! - `unix`
//! - `windows`
//!
//! However only the module corresponding to the platform you're compiling to will be available.
//!
pub mod android;
pub mod ios;
pub mod macos;
pub mod unix;
pub mod windows;