//! Crossterm provides the same core functionalities for both windows and unix systems.
//! Crossterm aims to be simple and easy to call in code.
//! True the simplicity of Crossterm you do not have to worry about the platform your working with.
//! You can just call the action you want to perform and under water it will check what to do based on the current platform.
pub use Crossterm;
pub use screen;
pub use raw;
pub use Context;
use ScreenManager;
use CommandManager;
use IStateCommand;
use StateManager;
extern crate libc;
extern crate termios;
extern crate winapi;