bevy/examples/plugin_loading/main.rs
2020-03-20 16:35:19 -07:00

11 lines
265 B
Rust

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