diff options
author | curly <curlybryce@protonmail.com> | 2022-08-13 17:21:42 -0600 |
---|---|---|
committer | curly <curlybryce@protonmail.com> | 2022-08-13 17:21:42 -0600 |
commit | 1d1ca2fdae780efdb9d27394f5d3720fe9282c91 (patch) | |
tree | ce6c36767bba6e594d5ea63834041232f058a3ce /src/main.rs | |
download | tetris-1d1ca2fdae780efdb9d27394f5d3720fe9282c91.tar.gz tetris-1d1ca2fdae780efdb9d27394f5d3720fe9282c91.tar.bz2 tetris-1d1ca2fdae780efdb9d27394f5d3720fe9282c91.zip |
define everthing I can think of
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..1abfbd9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,10 @@ +mod lib; +mod display; +mod input; + +fn main() { + println!("Hello World!"); + let tetris = lib::Tetris::new(); + + display::display(tetris.return_grid()); +}
\ No newline at end of file |