1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//
// Matt's Terminal
// Provides an interface for rendering ASCII text quickly on a window
//

mod app;
mod builder;
mod colour;
mod main_loop;
mod present;
mod render;
mod result;

pub use app::*;
pub use builder::*;
pub use colour::*;
pub use main_loop::*;
pub use present::*;
pub use render::*;
pub use result::*;