allegro_sys/
lib.rs

1// Copyright (c) 2014 by SiegeLord
2//
3// All rights reserved. Distributed under ZLib. For full terms see the file LICENSE.
4
5#![allow(non_camel_case_types)]
6#![allow(unexpected_cfgs)]
7
8pub use altime::*;
9pub use base::*;
10pub use bitmap::*;
11pub use bitmap_draw::*;
12pub use bitmap_io::*;
13pub use blend::*;
14pub use color::*;
15pub use config::*;
16pub use display::*;
17pub use drawing::*;
18pub use events::*;
19pub use file::*;
20pub use joystick::*;
21pub use keyboard::*;
22pub use keycodes::*;
23pub use monitor::*;
24pub use mouse::*;
25pub use path::*;
26pub use render_state::*;
27pub use shader::*;
28pub use system::*;
29pub use timer::*;
30pub use transformations::*;
31pub use utf8::*;
32
33pub mod altime;
34pub mod base;
35pub mod bitmap;
36pub mod bitmap_draw;
37pub mod bitmap_io;
38pub mod blend;
39pub mod color;
40pub mod config;
41pub mod display;
42pub mod drawing;
43pub mod events;
44pub mod file;
45pub mod joystick;
46pub mod keyboard;
47pub mod keycodes;
48pub mod monitor;
49pub mod mouse;
50pub mod path;
51pub mod render_state;
52pub mod shader;
53pub mod system;
54pub mod timer;
55pub mod transformations;
56pub mod utf8;