allegro 0.0.51

Allegro 5 core library Rust wrapper
Documentation
// Copyright (c) 2014 by SiegeLord
//
// All rights reserved. Distributed under ZLib. For full terms see the file LICENSE.

#![allow(clippy::all)]
#![allow(unexpected_cfgs)]
#![allow(mismatched_lifetime_syntaxes)]

pub use allegro_util::*;
pub use bitmap::*;
pub use bitmap_like::*;
pub use color::*;
pub use config::*;
pub use core::*;
pub use display::*;
pub use events::*;
pub use joystick::*;
pub use keycodes::*;
pub use run::*;
#[cfg(any(allegro_5_2_0, allegro_5_1_0))]
pub use shader::*;
pub use timer::*;
pub use transformations::*;

pub mod allegro_main;
pub mod bitmap;
pub mod bitmap_like;
pub mod color;
pub mod config;
pub mod core;
pub mod display;
pub mod events;
pub mod joystick;
pub mod keycodes;
pub mod run;
#[cfg(any(allegro_5_2_0, allegro_5_1_0))]
pub mod shader;
pub mod timer;
pub mod transformations;