bevy/examples/dynamic_plugin_loading/main.rs
2020-04-24 18:23:37 -07:00

11 lines
231 B
Rust

use bevy::prelude::*;
fn main() {
App::build()
.add_default_plugins()
.load_plugin(concat!(
env!("CARGO_MANIFEST_DIR"),
"/target/debug/libexample_plugin.so"
))
.run();
}