mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
11 lines
265 B
Rust
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();
|
|
}
|