Initial commit - egui tetris

This commit is contained in:
Greg Shuflin 2021-09-19 01:42:21 -07:00
commit 15e1e7a14e
2 changed files with 11 additions and 0 deletions

8
egui-tetris/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "egui-tetris"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
egui-tetris/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}