prototty 0.15.0

Utilities for easily and efficiently rendering to a terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate serde;
#[macro_use] extern crate serde_derive;
extern crate bincode;

mod coord;
mod input;
mod view;
mod rgb24;
mod storage;

pub use coord::*;
pub use view::*;
pub use input::*;
pub use rgb24::*;
pub use storage::*;