1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * adi_screen - Aldaron's Device Interface - Screen - "lib.rs"
 * Copyright 2017 (c) Jeron Lau - Licensed under the MIT LICENSE
**/

/// The version of adi_screen that's being used
pub const VERSION : &'static str = "adi_screen 0.2.2";

mod image;
mod renderer;
mod input;

mod window;
mod sprite;
mod style;
mod gui;

pub use input::keyboard::Key;
pub use input::joystick::Button;
pub use input::{ Input };
pub use window::{ Window };
pub use sprite::{ Sprite, Transform };
pub use style::Style;
pub use gui::Button as GuiButton;

extern crate ami;

pub extern crate adi_clock;