Initial Commit

This commit is contained in:
Silas Bartha 2025-02-26 19:42:34 -05:00
commit 9ad0786a31
3 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

11
Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "bevy_terminal_menu"
version = "0.1.0"
edition = "2021"
[dependencies.bevy]
version = "0.15"
default-features = false
[dependencies.bevy_terminal_display]
git = "https://git.soaos.dev/bevy_terminal_display"

3
src/lib.rs Normal file
View File

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