mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-22 20:00:53 +00:00
14 lines
322 B
Rust
14 lines
322 B
Rust
use bevy::prelude::*;
|
|
use bevy_gltf_worlflow_examples_common::CommonPlugin as CommonBasePlugin;
|
|
|
|
pub use bevy_gltf_worlflow_examples_common::*;
|
|
|
|
mod physics;
|
|
|
|
pub struct CommonPlugin;
|
|
impl Plugin for CommonPlugin {
|
|
fn build(&self, app: &mut App) {
|
|
app.add_plugins((physics::plugin, CommonBasePlugin));
|
|
}
|
|
}
|