bevy_auto_plugin 0.10.0

Procedural attribute macros for Bevy apps that reduce boilerplate by automatically registering components, resources, events, states, and systems in your plugin's build function.
Documentation
Attribute to mark the build function for the plugin, or impl Plugin trait build method for injection

# Parameters
- `plugin = PluginType` - **Required for bare functions only.** Specifies the plugin this build function belongs to.  
  **Not allowed on `impl Plugin` methods**, since the plugin type is already known.

# Notes
- Registry entries are sorted by file/line/column; within a file, definition order is preserved.
- Across files/modules, ordering follows file path (not module/import order). If order matters, co-locate entries, use `after_build`, or explicitly order plugins.

# Example - impl Plugin
```rust
use bevy::prelude::*;
use bevy_auto_plugin::prelude::*;

#[derive(AutoPlugin)]
struct MyPlugin;

impl Plugin for MyPlugin {
    #[auto_plugin]
    fn build(&self, app: &mut App) {
        // code injected here

        // your code
    }
}
```

# Example - bare fn
```rust
use bevy::prelude::*;
use bevy_auto_plugin::prelude::*;

#[derive(AutoPlugin)]
struct MyPlugin;

#[auto_plugin(plugin = MyPlugin)]
fn build(app: &mut App) {
    // code injected here

    // your code
}
```