#![warn(missing_docs)]
#[macro_use]
extern crate lazy_static;
extern crate png;
extern crate rand;
extern crate rayon;
extern crate tempfile;
pub extern crate sdl2;
pub mod anchor;
pub mod ditherer;
pub mod drawable;
pub mod empty;
pub mod image;
pub mod latex;
pub mod layout;
pub mod margin;
pub mod scene;
pub mod solid;
pub mod window;
pub mod withsize;
pub mod utils;
pub mod prelude {
pub use anchor::{Anchor, AnchorDirection};
pub use ditherer::{alpha_dither_fn, color_dither_fn, DitherDirection, Ditherer};
pub use drawable::{Drawable, DrawSettings, Position, State};
pub use empty::Empty;
pub use image::PngImage;
pub use latex::render::add_prelude;
pub use latex::LatexObj;
pub use layout::layered::Layered;
pub use layout::split::{Split, UpdateOrder};
pub use layout::stack::{ElementPositioning, Stack};
pub use layout::Orientation;
pub use margin::Margin;
pub use scene::{DrawableWrapper, Scene, SceneList, Action};
pub use solid::Solid;
pub use window::{default_settings, WindowManager, WindowManagerSettings, YEvent};
pub use withsize::WithSize;
pub use utils;
pub use sdl2::rect::{Point, Rect};
pub use sdl2::video::Window;
pub use sdl2::render::Canvas;
pub use sdl2::pixels::Color;
}