Initial commit

This commit is contained in:
Rendo 2026-01-23 22:22:52 +05:00
commit cfb2a0907d
7 changed files with 5698 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/target
*.kra~

5686
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 = "card-game"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = "0.18.0"

BIN
assets/music/main.mp3 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

3
src/main.rs Normal file
View file

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