A Bevy plugin for drawing arrows next to components.
Very WIP, do not rely on the API remaining stable.
To use, simply add the plugin to the app:
```rust
App::new().add_plugins(BevyArrowsPlugin)
```
Then, when spawning an entity, add the [`VecArrow`] component:
```rust
commands.spawn((
));
```