winit/src/os/mod.rs

14 lines
231 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-04-19 19:31:36 +02:00
pub mod android;
pub mod macos;
pub mod unix;
pub mod windows;