initial release

This commit is contained in:
JOLIMAITRE Matthieu 2022-04-04 14:23:20 +03:00
commit 0d492adb0a
8 changed files with 627 additions and 0 deletions

7
src/lib/mod.rs Normal file
View file

@ -0,0 +1,7 @@
pub mod controller;
pub mod game;
pub mod grid;
pub fn clear_term() {
print!("\x1B[2J\x1B[1;1H");
}