bevy/examples/plugin_loading/main.rs
2020-03-08 23:19:07 -07:00

11 lines
270 B
Rust

use bevy::prelude::*;
fn main() {
AppBuilder::new()
.add_defaults()
.load_plugin(concat!(
env!("CARGO_MANIFEST_DIR"),
"/examples/plugin_loading/example_plugin/target/release/libexample_plugin.so"
))
.run();
}