Start new repo for game

This commit is contained in:
2025-08-22 16:32:16 -05:00
commit 59be4c936f
5 changed files with 16 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/target
Cargo.lock

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"editor.tabSize": 2
}

7
Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "isospace"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = "0.16.1"

1
rustfmt.toml Normal file
View File

@@ -0,0 +1 @@
tab_spaces = 2

3
src/main.rs Normal file
View File

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