Be happy with what you have to be happy with

This commit is contained in:
Rendo 2026-04-29 00:19:25 +05:00
commit 8604a6bb87
5 changed files with 6071 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

6059
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

7
Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "project-crimson-star"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = "0.18.1"

1
README.md Normal file
View file

@ -0,0 +1 @@
My 8th if i'm correct attempt at making plants versus zombies fangame.

3
src/main.rs Normal file
View file

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