mirror of
https://github.com/edg-l/teecity.git
synced 2024-11-09 17:48:22 +00:00
9 lines
180 B
Rust
9 lines
180 B
Rust
|
use bevy::prelude::*;
|
||
|
|
||
|
#[derive(Component)]
|
||
|
pub struct Player;
|
||
|
|
||
|
pub fn add_player(mut commands: Commands) {
|
||
|
commands.spawn((Player, Name::new("Ryo"), Transform::default()));
|
||
|
}
|