aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-04-27 02:36:30 -0400
committerJesse Luehrs <doy@tozt.net>2016-04-27 03:03:46 -0400
commitdf328c13903d5a0e595d27b14f79e2a61f66f8fc (patch)
tree84812f3b90cd60a38a461e1b33e059365309492c /src/lib.rs
parent65b2ce10f83942a9dd2974ac19c694f1c6c9e617 (diff)
downloadvt100-rust-df328c13903d5a0e595d27b14f79e2a61f66f8fc.tar.gz
vt100-rust-df328c13903d5a0e595d27b14f79e2a61f66f8fc.zip
implement fgcolor and bgcolor for cells
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index aa7d488..58d9b2c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,9 +1,11 @@
extern crate libc;
mod cell;
+mod color;
mod ffi;
mod screen;
mod types;
pub use screen::Screen;
pub use cell::Cell;
+pub use color::Color;