tuix_core 0.2.0

Core parts of tuix
Documentation
#![allow(warnings)]

pub mod event_manager;
pub use event_manager::*;

pub mod event;
pub use event::*;

pub mod event_handler;
pub use event_handler::*;

pub mod builder;
pub use builder::*;

pub mod window_event;
pub use window_event::*;

pub mod window_description;
pub use window_description::*;

pub mod widget;
pub use widget::*;

pub mod window;
pub use window::WindowWidget;