wde_scene/
lib.rs

1//! A plugin for loading and saving scenes and configuration files in the WDE format.
2use bevy::prelude::*;
3
4mod utils;
5
6#[doc(hidden)]
7pub mod prelude {
8    pub mod serialize {
9        pub use crate::utils::serialize::*;
10        pub use serde_json::*;
11    }
12}
13
14pub struct ScenePlugin;
15impl Plugin for ScenePlugin {
16    fn build(&self, _app: &mut App) {}
17}