diff --git a/src/scene.rs b/src/scene.rs index e6db6c7..1da4c85 100644 --- a/src/scene.rs +++ b/src/scene.rs @@ -17,6 +17,12 @@ pub struct Position { x: f32, y: f32 } pub fn build_scene(mut commands: Commands) { + commands.spawn(( + Person, + Position { x: 10.0, y: 10.0 } + + ) + ); // commands.spawn() // .insert(Person) // .insert(Position { x: 10.0, y: 10.0 } );