winit/src/os/mod.rs

16 lines
332 B
Rust
Raw Normal View History

//! Contains traits with platform-specific methods in them.
//!
//! Contains the follow modules:
//!
2016-04-19 19:31:36 +02:00
//! - `android`
//! - `macos`
//! - `unix`
//! - `windows`
//!
2016-11-03 09:49:19 +01:00
//! However only the module corresponding to the platform you're compiling to will be available.
//!
2016-04-19 19:31:36 +02:00
pub mod android;
pub mod macos;
pub mod unix;
pub mod windows;