conrod 0.46.0

An easy-to-use, 100% Rust, extensible 2D GUI library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Functionality for simplifying the work involved when using conrod along-side piston.

extern crate shader_version;

pub mod draw;
pub mod event;
pub mod window;
pub mod gfx;

pub use self::window::{EventWindow, Window, WindowEvents};
pub use self::shader_version::OpenGL;