AF Bevy Plugin Macro
What?
Automates generation of bevy plugins boilerplate.
Usage
Let's say you have a Bevy crate called Foo consisting of two plugins, ControlPlugin and DisplayPlugin. You might write a lib.rs like this:
use *;
pub use *;
pub use *;
;
use ;
Replace this with:
use *;
use bevy_plugin_group;
bevy_plugin_group!;
Much better!
License
AF Bevy Plugin Macro is free, open source and permissively licensed!
All code in this repository is dual-licensed under either:
- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
at your option. This means you can select the license you prefer! This dual-licensing approach is the de-facto standard in the Rust ecosystem and there are very good reasons to include both.