scaffold
scaffold scaffold
This commit is contained in:
commit
2a3f0436d8
11 changed files with 5394 additions and 0 deletions
7
player/Cargo.toml
Normal file
7
player/Cargo.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "player"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
bevy = { version = "0.16.1", features = ["dynamic_linking"] }
|
||||
5
player/src/main.rs
Normal file
5
player/src/main.rs
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
use bevy::prelude::*;
|
||||
|
||||
fn main() {
|
||||
App::new().add_plugins(DefaultPlugins).run();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue