rust_graphics_window 0.1.2

A simple, small and minimal windowing library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(drain_filter)]
extern crate bitflags;
extern crate rust_graphics_library_loader as liblod;
extern crate rust_graphics_log as log;

pub mod event;

#[cfg(target_os = "linux")]
pub mod linux;
#[cfg(target_os = "linux")]
pub use linux::window::*;

#[cfg(target_os = "windows")]
pub mod windows;
#[cfg(target_os = "windows")]
pub use windows::window::*;