# bevy_fnplugins Set rust functions as bevy plugins ## Versions | bevy | bevy_fnplugins | | ---- | -------------- | | 0.12 | 0.1 | ## Examples ```rust use bevy::prelude::*; fn main() { App::new() .add_plugins(DefaultPlugins) .fn_plugins(example_plugin) .run(); } fn example_plugin(app: &mut App) { app.add_system(Startup, hello_system); } fn hello_system() { println!("It works!"); } ``` For more examples, see the [examples](examples) directory.