1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#![warn(missing_docs)]
#![warn(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::redundant_closure_for_method_calls)]
#![doc = include_str!("../README.md")]

pub use crate::{
    app::*,
    clone::*,
    dir::*,
    entity::*,
    error::*,
    plugins::*,
    registry::*,
    rollbacks::*,
    scene::*,
    serde::*,
    snapshot::*,
    world::*,
};

mod app;
mod clone;
mod dir;
mod entity;
mod error;
mod plugins;
mod registry;
mod rollbacks;
mod scene;
mod serde;
mod snapshot;
mod world;

/// Prelude: convenient import for all the user-facing APIs provided by the crate
pub mod prelude {
    pub use crate::*;
}