1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! This module has a copy of quicksilver types  to ease transition form quicksilver to something else.
//!
//! Everything inside has been copied from https://github.com/ryanisaacg/quicksilver and only marginally modified.
//!
pub mod geom;
pub mod graphics;

pub use super::input::*;
pub use geom::{about_equal, Circle, Shape};
pub use graphics::Background::Img;
pub use graphics::*;