From 468c75dd1ce01610c352ccb6c1aff8706c4476e6 Mon Sep 17 00:00:00 2001
From: Nikolai Rodionov <allanger@badhouseplants.net>
Date: Wed, 12 Mar 2025 19:01:18 +0100
Subject: [PATCH] Init the bevy project

---
 .gitignore  | 5 +++++
 Cargo.toml  | 8 ++++++++
 src/main.rs | 7 +++++++
 3 files changed, 20 insertions(+)
 create mode 100644 Cargo.toml
 create mode 100644 src/main.rs

diff --git a/.gitignore b/.gitignore
index ab951f8..620f8f6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,3 +20,8 @@ Cargo.lock
 #  and can be added to the global gitignore or merged into this file.  For a more nuclear
 #  option (not recommended) you can uncomment the following to ignore the entire idea folder.
 #.idea/
+
+
+# Added by cargo
+
+/target
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..82e98c1
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "zoned-out"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
+avian3d = "0.2.1"
+bevy = "0.15.3"
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..d216c17
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,7 @@
+use bevy::prelude::*;
+
+fn main() {
+    App::new()
+        .add_plugins(DefaultPlugins)
+        .run();
+}