From 59be4c936f822b9e5223d8dfbe68b2e7c7255395 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Fri, 22 Aug 2025 16:32:16 -0500 Subject: [PATCH] Start new repo for game --- .gitignore | 2 ++ .vscode/settings.json | 3 +++ Cargo.toml | 7 +++++++ rustfmt.toml | 1 + src/main.rs | 3 +++ 5 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100644 Cargo.toml create mode 100644 rustfmt.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96ef6c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ff30c44 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.tabSize": 2 +} \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..dacf78a --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "isospace" +version = "0.1.0" +edition = "2024" + +[dependencies] +bevy = "0.16.1" diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..6f2e075 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +tab_spaces = 2 \ No newline at end of file diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..80a1832 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}