├── .cargo └── config ├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── jreleaser.yml ├── src ├── lib.rs ├── main.rs ├── multiplayer.rs └── sqlite.rs ├── tests └── integration_test.rs └── tetris-2-player.gif /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/.cargo/config -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/README.md -------------------------------------------------------------------------------- /jreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/jreleaser.yml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/multiplayer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/src/multiplayer.rs -------------------------------------------------------------------------------- /src/sqlite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/src/sqlite.rs -------------------------------------------------------------------------------- /tests/integration_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/tests/integration_test.rs -------------------------------------------------------------------------------- /tetris-2-player.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/tetris-tui/HEAD/tetris-2-player.gif --------------------------------------------------------------------------------