1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! Textris is a hobby project to play tetris on your terminal.

#[macro_use]
extern crate failure;
extern crate getopts;
extern crate rand;
extern crate termion;

pub mod action;
mod block;
pub mod cli;
mod color;
pub mod coord;
mod elapsed;
mod field;
pub mod game;
pub mod inputs;
mod play;
pub mod screen;
mod tetromino;