mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
11 lines
231 B
Rust
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();
|
|
}
|