micro-gui 0.1.0

A smol GUI for embedded systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Types module defines types for use across ugui implementation
//!
//! Copyright 2017 Ryan Kurte

pub mod pixel;
pub use self::pixel::{PixelBW, PixelRGB24};
pub mod point;
pub use self::point::Point;
pub mod rect;
pub use self::rect::Rect;
pub mod events;
pub use self::events::Event;