mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-26 21:37:01 +00:00
21 lines
332 B
Rust
21 lines
332 B
Rust
|
pub mod state;
|
||
|
pub use state::*;
|
||
|
|
||
|
pub mod assets;
|
||
|
use assets::*;
|
||
|
|
||
|
pub mod core;
|
||
|
pub use core::*;
|
||
|
|
||
|
pub mod game;
|
||
|
pub use game::*;
|
||
|
|
||
|
use bevy::prelude::*;
|
||
|
|
||
|
pub struct CommonPlugin;
|
||
|
impl Plugin for CommonPlugin {
|
||
|
fn build(&self, app: &mut App) {
|
||
|
app.add_plugins((StatePlugin, AssetsPlugin, CorePlugin, GamePlugin));
|
||
|
}
|
||
|
}
|